Created
October 27, 2012 20:35
-
-
Save jk/3966082 to your computer and use it in GitHub Desktop.
Calabash
This file contains hidden or 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 = '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