calabash-android 0.2.16 → 0.2.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGES.txt +3 -0
- data/bin/calabash-android +12 -0
- data/lib/calabash-android/version.rb +1 -1
- metadata +1 -1
data/CHANGES.txt
CHANGED
data/bin/calabash-android
CHANGED
@@ -56,6 +56,18 @@ elsif cmd == 'gen'
|
|
56
56
|
elsif cmd == 'setup'
|
57
57
|
calabash_setup
|
58
58
|
exit 0
|
59
|
+
elsif cmd == 'extract-manifest'
|
60
|
+
if ARGV.empty?
|
61
|
+
puts "Please specify an app"
|
62
|
+
exit 1
|
63
|
+
end
|
64
|
+
unless File.exist? ARGV.first
|
65
|
+
puts "No such file #{ARGV.first}"
|
66
|
+
exit 1
|
67
|
+
end
|
68
|
+
|
69
|
+
puts manifest ARGV.first
|
70
|
+
exit 0
|
59
71
|
elsif cmd == 'version'
|
60
72
|
puts Calabash::Android::VERSION
|
61
73
|
exit 0
|