-
Notifications
You must be signed in to change notification settings - Fork 369
/
Calabash.podspec
27 lines (26 loc) · 1.41 KB
/
Calabash.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Pod::Spec.new do |s|
s.name = 'Calabash'
s.version = '0.23.6'
s.license = { :type => 'Eclipse Public License 1.0', :text => <<-LICENSE
Calabash-ios Copyright (2016) Xamarin. All rights reserved.
The use and distribution terms for this software are covered by the
Eclipse Public License 1.0
(http://opensource.org/licenses/eclipse-1.0.php) which can be found in
the file epl-v10.html at the root of this distribution. By using this
software in any fashion, you are agreeing to be bound by the terms of
this license. You must not remove this notice, or any other, from
this software.
LICENSE
}
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 = { :http => "https://rubygems.org/downloads/calabash-cucumber-#{s.version.to_s}.gem", :type => 'tgz' }
s.prepare_command = "\t\t\ttar xzf data.tar.gz\n\t\t\tunzip staticlib/calabash.framework.zip\n"
s.preserve_paths = 'calabash.framework'
s.source_files = "calabash.framework/Versions/A/Headers/*"
s.xcconfig = { "OTHER_LDFLAGS" => "-ObjC -force_load \"$(PODS_ROOT)/Calabash/calabash.framework/calabash\"" }
s.ios.framework = 'CFNetwork'
s.requires_arc = false
end