Skip to content

Instantly share code, notes, and snippets.

@jk
Created October 27, 2012 20:35
Show Gist options
  • Select an option

  • Save jk/3966082 to your computer and use it in GitHub Desktop.

Select an option

Save jk/3966082 to your computer and use it in GitHub Desktop.
Calabash
Pod::Spec.new do |s|
s.name = 'Calabash'
s.version = '0.9.80'
s.license = 'Eclipse Public License 1.0'
s.platform = :ios
s.summary = 'Calabash is an automated testing technology for Android and iOS native and hybrid applications.'
s.homepage = 'https://github.com/calabash/calabash-ios'
s.author = { 'Karl Krukow' => '[email protected]' }
s.source = { :git => 'https://github.com/calabash/calabash-ios-server.git', :tag => 'v0.9.80' }
# LPScreencastRoute and ScreenCaptureView are not built in the calabash .xocdeproj
s.source_files = FileList['calabash/Classes/**/*.*'].exclude(/LPScreencastRoute/) \
.exclude(/ScreenCaptureView/)
s.header_mappings_dir = '.'
s.frameworks = 'CFNetwork'
s.xcconfig = { 'OTHER_LINKER_FLAGS' => '-force_load "$(PODS_ROOT)/Calabash/calabash.framework/calabash" -lstdc++' }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment