-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPippinTesting.podspec
26 lines (23 loc) · 1.01 KB
/
PippinTesting.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Pod::Spec.new do |s|
s.name = 'PippinTesting'
s.version = '2.1.0'
s.summary = "A Swift framework to make Xcode testing easier."
s.description = <<-DESC
A collection of Swift and Objective-C utilities delivering helper functions to work with XCTest and XCUIApplication API in service of concise, readable and robust test code.
DESC
s.homepage = 'https://github.com/tworingsoft/Pippin'
s.license = 'MIT'
s.author = { 'Andrew McKnight' => '[email protected]' }
s.source = { :git => 'https://github.com/tworingsoft/Pippin.git', :tag => "#{s.name}-#{s.version}" }
s.platform = :ios, '15.6'
s.swift_version = '5.8'
s.source_files = 'Sources/PippinTesting/**/*.{h,m,swift}'
s.frameworks = 'XCTest'
s.test_spec 'Tests' do |test_spec|
test_spec.source_files = 'Tests/PippinTesting/**/*.swift'
end
s.pod_target_xcconfig = {
'ENABLE_BITCODE' => 'NO',
'PRODUCT_BUNDLE_IDENTIFIER' => 'com.tworingsoft.pippin-testing',
}
end