-
Notifications
You must be signed in to change notification settings - Fork 13
/
TABTestKit.podspec
28 lines (26 loc) · 1.34 KB
/
TABTestKit.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
27
28
Pod::Spec.new do |s|
s.name = 'TABTestKit'
s.version = '1.8.0'
s.summary = 'Strongly typed Swift wrapper around XCTest / XCUI, enabling you to write BDD-style automation tests, without writing much code at all.'
s.homepage = 'https://github.com/theappbusiness/TABTestKit'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { 'zacoid55' => '[email protected]',
'KaneCheshire' => '[email protected]',
'theblixguy' => '[email protected]',
'neil3079' => '[email protected]',
'annpiktas' => '[email protected]',
'roger-tan' => '[email protected]',
'jsanderson44' => '[email protected]' }
s.source = { :git => 'https://github.com/theappbusiness/TABTestKit.git', :tag => s.version.to_s }
s.ios.deployment_target = '12.4'
s.swift_version = '5.0'
s.source_files = 'TABTestKit/Classes/**/*'
s.frameworks = 'XCTest'
s.subspec 'Biometrics' do |b|
b.source_files = 'TABTestKit/Classes/Biometrics/**/*'
end
s.subspec 'BDD' do |b|
b.source_files = 'TABTestKit/Classes/BDD/**/*'
end
s.pod_target_xcconfig = { 'ENABLE_BITCODE' => 'NO' }
end