Sha256: fb4cb3f2b81de0162fb7e6f651f0637037f65a0dc48c16fd08928eff386d1e1b
Contents?: true
Size: 966 Bytes
Versions: 3
Compression:
Stored size: 966 Bytes
Contents
require 'tempfile' require 'json' require "rubygems" def msg(title, &block) puts "\n" + "-"*10 + title + "-"*10 block.call puts "-"*10 + "-------" + "-"*10 + "\n" end def print_usage puts <<EOF Usage: calabash-android <command-name> [parameters] [options] <command-name> can be one of help prints more detailed help information. gen generate a features folder structure. setup sets up a non-default keystore to use with this test project. build <apk> builds the test server that will be used when testing the app. run <apk> runs Cucumber in the current folder with the enviroment needed. version prints the gem version <options> can be -v, --verbose Turns on verbose logging EOF end def print_help file = File.join(File.dirname(__FILE__), '..', 'doc', 'calabash-android-help.txt') #system("less #{file}") #TODO print_usage end def is_json?(str) str[0..0] == '{' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
calabash-android-0.3.6 | bin/calabash-android-helpers.rb |
calabash-android-0.3.5 | bin/calabash-android-helpers.rb |
calabash-android-0.3.4 | bin/calabash-android-helpers.rb |