-
Notifications
You must be signed in to change notification settings - Fork 512
/
Kiwi.podspec
28 lines (23 loc) · 958 Bytes
/
Kiwi.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 = 'Kiwi'
s.version = '3.0.0'
s.summary = 'A Behavior Driven Development library for iOS and OS X.'
s.homepage = 'https://github.com/kiwi-bdd/Kiwi'
s.source = { :git => 'https://github.com/kiwi-bdd/Kiwi.git', :tag => "v#{s.version}" }
s.license = { :type => 'MIT', :file => 'License.txt' }
s.authors = {
'Allen Ding' => '[email protected]',
'Luke Redpath' => '[email protected]',
'Marin Usalj' => '[email protected]',
'Stepan Hruda' => '[email protected]',
'Brian Gesiak' => '[email protected]',
'Adam Sharp' => '[email protected]',
'Eduardo Caselles' => '[email protected]'
}
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.8'
s.framework = 'XCTest'
s.source_files = 'Classes/**/*.{h,m}'
s.requires_arc = true
s.prefix_header_contents = '#import <XCTest/XCTest.h>'
end