Sha256: 908efa0f2017044e8a45927dbc119516dca9a2b26e9504c42c3bd36a82cbe6f4
Contents?: true
Size: 1.37 KB
Versions: 2
Compression:
Stored size: 1.37 KB
Contents
def calabash_build(args) run_setup_if_settings_does_not_exist @settings = JSON.parse(IO.read(".calabash_settings")) test_server_template_dir = File.join(File.dirname(__FILE__), '..', 'test-server') Dir.mktmpdir do |workspace_dir| @test_server_dir = File.join(workspace_dir, 'test-server') FileUtils.cp_r(test_server_template_dir, workspace_dir) Dir.chdir(@test_server_dir) { args = [ "ant", "clean", "package", "-Dtested.package_name=#{@settings["package_name"]}", "-Dtested.main_activity=#{@settings["activity_name"]}", "-Dtested.project.apk=#{@settings["app_path"]}", "-Dandroid.api.level=#{@settings["api_level"]}", "-Dkey.store=#{@settings["keystore_location"]}", "-Dkey.store.password=#{@settings["keystore_password"]}", "-Dkey.alias=#{@settings["keystore_alias"]}", "-Dkey.alias.password=#{@settings["keystore_alias_password"]}", ] IO.popen(args.join(" ")) do |io| io.each { |s| print s } end if $?.exitstatus != 0 puts "Could not build the test server. Please see the output above." exit $?.exitstatus end } test_apk = File.join(@test_server_dir, "bin", "Test.apk") FileUtils.cp(test_apk, @support_dir) puts "Done building the test server. Moved it to features/support/Test.apk" end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
calabash-android-0.0.5 | bin/calabash-android-build.rb |
calabash-android-0.0.4 | bin/calabash-android-build.rb |