forked from kiwi-bdd/Kiwi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKiwi.podspec
52 lines (45 loc) · 1.69 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
Pod::Spec.new do |s|
s.name = 'Kiwi'
s.version = '2.3.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 => s.version.to_s }
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]',
}
# TODO: clean this up once Apple gets their stuff together
s.ios.xcconfig = {
"FRAMEWORK_SEARCH_PATHS" => %w[
$(SDKROOT)/Developer/Library/Frameworks
$(inherited)
$(DEVELOPER_FRAMEWORKS_DIR)
].join(' '),
"FRAMEWORK_SEARCH_PATHS[sdk=iphoneos8.0]" => %w[
$(inherited)
$(DEVELOPER_DIR)/Platforms/iPhoneOS.platform/Developer/Library/Frameworks
].join(' '),
"FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator8.0]" => %w[
$(inherited)
$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks
].join(' '),
}
s.osx.xcconfig = {
"FRAMEWORK_SEARCH_PATHS" => "$(DEVELOPER_FRAMEWORKS_DIR)",
"FRAMEWORK_SEARCH_PATHS[sdk=macosx10.10]" => %w[
$(inherited)
$(DEVELOPER_DIR)/Platforms/MacOSX.platform/Developer/Library/Frameworks
].join(' '),
}
s.ios.deployment_target = '5.0'
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