forked from specta/specta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSpecta.podspec
18 lines (15 loc) · 1.04 KB
/
Specta.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 = 'Specta'
s.version = '1.0.0'
s.license = 'MIT'
s.summary = 'A light-weight TDD / BDD framework for Objective-C & Cocoa.'
s.homepage = 'http://github.com/specta/specta'
s.author = { 'Peter Jihoon Kim' => '[email protected]' }
s.source = { :git => 'https://github.com/specta/specta.git', :tag => "v#{s.version.to_s}" }
s.description = 'Specta is a light-weight testing framework for Objective-C and Cocoa that adds RSpec-like DSL to XCTest.'
s.source_files = 'Specta/Specta/**/*.{h,m}'
s.frameworks = 'Foundation', 'XCTest'
s.requires_arc = true
s.osx.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '$(inherited) $(DEVELOPER_FRAMEWORKS_DIR) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "$(DEVELOPER_DIR)/Platforms/MacOSX.platform/Developer/Library/Frameworks"' }
s.ios.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '$(inherited) $(DEVELOPER_FRAMEWORKS_DIR) "$(PLATFORM_DIR)/Developer/Library/Frameworks" "$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks"' }
end