forked from kif-framework/Lela
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Lela.podspec
35 lines (29 loc) · 1.23 KB
/
Lela.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
Pod::Spec.new do |s|
s.name = "Lela"
s.version = "0.2.0"
s.summary = "Provides perceptial difference screen testing within KIF."
s.homepage = "https://github.com/kif-framework/Lela/"
s.license = 'GPL 3.0'
s.authors = { 'Brian Nickel' => '[email protected]' }
s.source = { :git => "https://github.com/kif-framework/Lela.git", :tag => "v0.2.0" }
s.platform = :ios, '5.1'
s.public_header_files = 'Lela/Lela.h', 'Lela/KIFUITestActor+Lela.h'
s.frameworks = 'UIKit', 'QuartzCore', 'CoreGraphics'
s.libraries = 'c++', 'stdc++'
s.requires_arc = true
s.default_subspec = 'XCTest'
s.subspec 'OCUnit' do |sentest|
sentest.source_files = 'Lela/**/*.{h,m,mm}'
sentest.dependency 'KIF/OCUnit', '~> 3.0'
# I would expect the following to be inherited but lint disagrees.
sentest.framework = 'SenTestingKit'
sentest.xcconfig = { 'OTHER_CFLAGS' => '-DKIF_SENTEST' }
end
s.subspec 'XCTest' do |xctest|
xctest.source_files = 'Lela/**/*.{h,m,mm}'
xctest.dependency 'KIF/XCTest', '~> 3.0'
# I would expect the following to be inherited but lint disagrees.
xctest.framework = 'XCTest'
xctest.xcconfig = { 'OTHER_CFLAGS' => '-DKIF_XCTEST' }
end
end