calabash-android 0.7.1 → 0.7.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 393dbdd84c78a875058ddaea8188ab748d0003e3
4
- data.tar.gz: 76312388f062be8c437c23f507ba0140f76bbc5b
3
+ metadata.gz: 0b87f4ad737c2b594be18aad28981d8d46a51543
4
+ data.tar.gz: 39939908d527e49c6543d2d1939d4fc2b0ecb58d
5
5
  SHA512:
6
- metadata.gz: 34417abdd6a34907a6be8385fb8e4cdb89380db0aebc2bf5d8e6414daf84ca23e8e14cef048eb9b73b3a2e4cb81db4e969b8e85f2ec95316487d6dc9566402f5
7
- data.tar.gz: 34c5cf86e2677880859cede599eb217952bb8a39ebf42ee0c0692c45748f2d0958e20b3d05aa8db6001d130aa5603a68893142df1baee086849d5ecaa75d9e79
6
+ metadata.gz: 5300345c449907a6adcbe20e0eda0c363ee3d735e81b4565a609c7ba1598fd89943f41796555cd4bce7f743c44627ca3070034fc15df9e137bd63398111bb1c3
7
+ data.tar.gz: 828a9e98efa99bcaf9b9d34e8000547acdc468fa840a2e4465bd5ddd404d6bd074607333b601a45324463c5955be412a20535d6ad4716382ae6dbbe1fa153b17
@@ -183,7 +183,7 @@ def fingerprint_from_apk(app_path)
183
183
  raise "No signature files found in META-INF. Cannot proceed." if signature_files.empty?
184
184
  raise "More than one signature file (DSA or RSA) found in META-INF. Cannot proceed." if signature_files.length > 1
185
185
 
186
- cmd = "#{Calabash::Android::Dependencies.keytool_path} -v -printcert -J\"-Dfile.encoding=utf-8\" -file \"#{signature_files.first}\""
186
+ cmd = "\"#{Calabash::Android::Dependencies.keytool_path}\" -v -printcert -J\"-Dfile.encoding=utf-8\" -file \"#{signature_files.first}\""
187
187
  log cmd
188
188
  fingerprints = `#{cmd}`
189
189
  md5_fingerprint = extract_md5_fingerprint(fingerprints)
@@ -63,7 +63,7 @@ class JavaKeystore
63
63
 
64
64
  def system_with_stdout_on_success(cmd, *args)
65
65
  a = Escape.shell_command(args)
66
- cmd = "#{cmd} #{a.gsub("'", '"')}"
66
+ cmd = "\"#{cmd}\" #{a.gsub("'", '"')}"
67
67
  log cmd
68
68
  out = `#{cmd}`
69
69
  if $?.exitstatus == 0
@@ -1,5 +1,5 @@
1
1
  module Calabash
2
2
  module Android
3
- VERSION = "0.7.1"
3
+ VERSION = "0.7.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: calabash-android
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.1
4
+ version: 0.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonas Maturana Larsen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-17 00:00:00.000000000 Z
11
+ date: 2016-03-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cucumber