forked from kif-framework/KIF
-
Notifications
You must be signed in to change notification settings - Fork 10
/
KIF.podspec
28 lines (26 loc) · 1.32 KB
/
KIF.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 = "KIF"
s.version = "3.4.2.3"
s.summary = "Keep It Functional - iOS UI acceptance testing in an XCUnit harness."
s.homepage = "https://github.com/linkedin/KIF.git"
s.license = 'Apache 2.0'
s.authors = 'Michael Thole', 'Eric Firestone', 'Jim Puls', 'Brian Nickel'
s.source = { :git => "https://github.com/kif-framework/KIF.git", :tag => "v#{ s.version.to_s }" }
s.platform = :ios, '5.1'
s.frameworks = 'CoreGraphics', 'QuartzCore', 'IOKit', 'XCTest'
s.default_subspec = 'Core'
s.requires_arc = true
s.prefix_header_contents = '#import <CoreGraphics/CoreGraphics.h>'
s.subspec 'Core' do |core|
core.source_files = 'Classes', 'Additions'
core.public_header_files = 'Classes/**/*.h', 'Additions/**/*-KIFAdditions.h', 'Additions/UIView-Debugging.h'
core.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '$(PLATFORM_DIR)/Developer/Library/Frameworks' }
core.requires_arc = true
end
s.subspec 'IdentifierTests' do |kiaf|
kiaf.dependency 'KIF/Core'
kiaf.source_files = 'IdentifierTests'
kiaf.public_header_files = 'IdentifierTests/**/*.h'
kiaf.requires_arc = true
end
end