-
Notifications
You must be signed in to change notification settings - Fork 4
/
RedGreen.podspec
17 lines (17 loc) · 955 Bytes
/
RedGreen.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = "RedGreen"
s.version = "1.0.2"
s.summary = "RedGreen is an extension library for SenTestKit/XCTest that makes the test output easier to parse by humans."
s.homepage = "http://github.com/neilco/RedGreen"
s.license = 'MIT (see LICENSE.txt)'
s.author = { "Neil Cowburn" => "[email protected]" }
s.source = { :git => "https://github.com/neilco/RedGreen.git", :tag => "1.0.2" }
s.source_files = 'RedGreen', 'RedGreen/SenTestLog+RedGreen.{h,m}'
s.framework = 'SenTestingKit'
s.ios.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '$(inherited) "$(SDKROOT)/Developer/Library/Frameworks" "$(DEVELOPER_LIBRARY_DIR)/Frameworks"' }
s.osx.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '$(inherited) "$(DEVELOPER_LIBRARY_DIR)/Frameworks"' }
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.7'
s.requires_arc = true
s.xcconfig = { 'OTHER_LDFLAGS' => '-lObjC' }
end