calabash-android 0.5.6 → 0.5.7

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: c0f29f33e9e026e1948b7746301916bf5f87f1e6
4
- data.tar.gz: 903b0dfb5f17b8e671881f68dcc6cd8a1a60ba22
3
+ metadata.gz: fd85606ddf54ce646e3c50dead6858a8ca073186
4
+ data.tar.gz: ce3cfd1173b15f7f0fb93c748d487fac9b79e005
5
5
  SHA512:
6
- metadata.gz: 781cf2f7cdfa7409ba431f887e56050103c311f342b2744f7a3d3445daac64576b17d60079ddf769efb13c62dd1e980198d0996389b7e10847006b6d5246ccb5
7
- data.tar.gz: a2a3665bfa7207d735c5a349ff331dda452cb441a3849528cf00abad27c13aba0ee8a5c7dc0aaa44469d644d4c9a1132bbe0e0cd3c536867205216fad6b0928a
6
+ metadata.gz: 1b4553b337a93d2ebf163b55af963e870cc402b7e58d14ade7320b24249701edf502ae2bebed41bbc3d532599b346ec3c56f3cd0d7ad23443675fa817c9dea96
7
+ data.tar.gz: fa2c43ba4ff0b5c3ede4420cb69fc0c62b843b618623a1a2faf82eb7e587fe38ce1be3d3c6d68d46b5f286681ab0a86574fe4795bff8e5e8018e7921ea621402
@@ -1,3 +1,6 @@
1
+ 0.5.7
2
+ Replaced calls to retriable with Retriable.retriable.
3
+
1
4
  0.5.6
2
5
  Support for Crosswalk.
3
6
 
@@ -555,7 +555,7 @@ module Calabash module Android
555
555
  log wake_up_cmd
556
556
  raise "Could not wake up the device" unless system(wake_up_cmd)
557
557
 
558
- retriable :tries => 10, :interval => 1 do
558
+ Retriable.retriable :tries => 10, :interval => 1 do
559
559
  raise "Could not remove the keyguard" if keyguard_enabled?
560
560
  end
561
561
  end
@@ -605,12 +605,12 @@ module Calabash module Android
605
605
  log cmd
606
606
  raise "Could not execute command to start test server" unless system("#{cmd} 2>&1")
607
607
 
608
- retriable :tries => 10, :interval => 1 do
608
+ Retriable.retriable :tries => 10, :interval => 1 do
609
609
  raise "App did not start" unless app_running?
610
610
  end
611
611
 
612
612
  begin
613
- retriable :tries => 10, :interval => 3 do
613
+ Retriable.retriable :tries => 10, :interval => 3 do
614
614
  log "Checking if instrumentation backend is ready"
615
615
 
616
616
  log "Is app running? #{app_running?}"
@@ -1,5 +1,5 @@
1
1
  module Calabash
2
2
  module Android
3
- VERSION = "0.5.6"
3
+ VERSION = "0.5.7"
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.5.6
4
+ version: 0.5.7
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: 2015-02-09 00:00:00.000000000 Z
11
+ date: 2015-02-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cucumber