calabash-android 0.5.10.pre1 → 0.5.10.pre2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b204eee006148958c9278410b3928d41c2787167
4
- data.tar.gz: 083f6c8cd2db8e0e6d3b17549ca87f72eb57b231
3
+ metadata.gz: 7d2fed43ea97b2654ee8716da45c5013bd66a218
4
+ data.tar.gz: a88db5610925b1459b6599981a45c19acce0fa2d
5
5
  SHA512:
6
- metadata.gz: 9720e92e7e79fffb8487655f62ceee741bd1d3d4fdff0eb26f36a894efba950977b7a8db7da6dcf234551fdb123cfc0e23b67a49a6bce0aa4f9d13cb0b0e38a1
7
- data.tar.gz: afe5346dc95c104f58b5271b3b5f7eb4a78b51c2350088e9aeaf834403b1714b5ad0f638ec4013ddc8b9831e4a61a75c6a0a5566e2011618874ee106f30279a7
6
+ metadata.gz: e23603bad72517f5535b15ba72aebd306d75ca8e9eb90a45d1c5da2c2031555074626ac3db5c71164f2afcfa8fb97e225ec43b5652e2b4f2e51a29e32efc7c32
7
+ data.tar.gz: 867f6e781441753c4a6bc010843ffbc5519cf9f3f658537e714599136a4c0ffde1783be7c063aa6374839f2290f361defaa2e20b97c41ea5b66f06c88587ab6f
@@ -6,13 +6,13 @@ class JavaKeystore
6
6
  raise "No such keystore file '#{location}'" unless File.exists?(File.expand_path(location))
7
7
  log "Reading keystore data from keystore file '#{File.expand_path(location)}'"
8
8
 
9
- keystore_data = system_with_stdout_on_success(Env.keytool_path, '-list', '-v', '-alias', keystore_alias, '-keystore', location, '-storepass', password, '-J"-Dfile.encoding=utf-8"', '-J"-Duser.locale=en-US"')
9
+ keystore_data = system_with_stdout_on_success(Env.keytool_path, '-list', '-v', '-alias', keystore_alias, '-keystore', location, '-storepass', password, '-J"-Dfile.encoding=utf-8"', '-J"-Duser.language=en-US"')
10
10
 
11
11
  if keystore_data.nil?
12
12
  if keystore_alias.empty?
13
13
  log "Could not obtain keystore data. Will try to extract alias automatically"
14
14
 
15
- keystore_data = system_with_stdout_on_success(Env.keytool_path, '-list', '-v', '-keystore', location, '-storepass', password, '-J"-Dfile.encoding=utf-8"', '-J"-Duser.locale=en-US"')
15
+ keystore_data = system_with_stdout_on_success(Env.keytool_path, '-list', '-v', '-keystore', location, '-storepass', password, '-J"-Dfile.encoding=utf-8"', '-J"-Duser.language=en-US"')
16
16
  aliases = keystore_data.scan(/Alias name\:\s*(.*)/).flatten
17
17
 
18
18
  if aliases.length == 0
@@ -1,5 +1,5 @@
1
1
  module Calabash
2
2
  module Android
3
- VERSION = "0.5.10.pre1"
3
+ VERSION = "0.5.10.pre2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: calabash-android
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.10.pre1
4
+ version: 0.5.10.pre2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonas Maturana Larsen