Last active
December 10, 2015 08:48
-
-
Save jawwad/4410570 to your computer and use it in GitHub Desktop.
A copy of the Kiwi 1.1.1 podspec with $(inherited) removed from FRAMEWORK_SEARCH_PATHS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |s| | |
s.name = 'Kiwi' | |
s.version = '1.1.1' | |
s.summary = 'A Behavior Driven Development library for iPhone and iPad development.' | |
s.homepage = 'http://kiwi-lib.info' | |
s.authors = { 'Allen Ding' => '[email protected]', 'Luke Redpath' => '[email protected]' } | |
s.license = { :type => 'MIT', :file => 'License.txt' } | |
s.source = { :git => 'https://github.com/allending/Kiwi.git', :tag => '1.1.1' } | |
s.source_files = 'Kiwi' | |
s.framework = 'SenTestingKit' | |
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(SDKROOT)/Developer/Library/Frameworks" "$(DEVELOPER_LIBRARY_DIR)/Frameworks"' } | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment