forked from theappbusiness/TABTestKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTABTestKit.podspec
More file actions
24 lines (22 loc) · 1.06 KB
/
TABTestKit.podspec
File metadata and controls
24 lines (22 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = 'TABTestKit'
s.version = '1.6.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' => 'zac@theappbusiness.com',
'KaneCheshire' => 'kane.cheshire@theappbusiness.com',
'theblixguy' => 'suyash.srijan@theappbuisness.com' }
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