Skip to content

Instantly share code, notes, and snippets.

@jawwad
Last active December 10, 2015 08:48
Show Gist options
  • Save jawwad/4410570 to your computer and use it in GitHub Desktop.
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
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