14 lines
850 B
Ruby
14 lines
850 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'Kiwi'
|
|
s.version = '1.1.0'
|
|
s.summary = 'A Behavior Driven Development library for iPhone and iPad development.'
|
|
s.homepage = 'http://kiwi-lib.info'
|
|
s.authors = { 'Allen Ding' => 'allen@allending.com', 'Luke Redpath' => 'luke@lukeredpath.co.uk' }
|
|
s.license = { :type => 'MIT', :file => 'License.txt' }
|
|
s.source = { :git => 'https://github.com/allending/Kiwi.git', :commit => '68ae6032e760dc1eb8627c30bc9504628e8e170e' }
|
|
s.source_files = 'Kiwi'
|
|
s.framework = 'SenTestingKit'
|
|
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(SDKROOT)/Developer/Library/Frameworks" "$(DEVELOPER_LIBRARY_DIR)/Frameworks"' }
|
|
s.preserve_paths = ["Examples", "Classes", "*.xcodeproj", "Other Sources", "Resources", "Templates", "Tests", "*.sh"]
|
|
end
|