forked from kiwi-bdd/Kiwi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Kiwi.podspec
28 lines (22 loc) · 895 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
Pod::Spec.new do |s|
s.name = 'Kiwi'
s.version = '2.4.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' => 'alding@gmail.com',
'Luke Redpath' => 'luke@lukeredpath.co.uk',
'Marin Usalj' => 'marin2211@gmail.com',
'Stepan Hruda' => 'stepan.hruda@gmail.com',
'Brian Gesiak' => 'modocache@gmail.com',
'Adam Sharp' => 'adsharp@me.com',
}
s.ios.deployment_target = '5.1.1'
s.osx.deployment_target = '10.7'
s.framework = 'XCTest'
s.source_files = 'Classes/**/*.{h,m}'
s.requires_arc = true
s.prefix_header_contents = '#import <XCTest/XCTest.h>'
end