calabash-page-objects 0.5.3 → 0.5.4

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: f94282ee9aef5d804242ab716cf082b04d408f6d
4
- data.tar.gz: 730e0896a0f874e753e0965b0001169df79abe2f
3
+ metadata.gz: 445e4bd6a9b3a161421a6201a853ee5f0946e93b
4
+ data.tar.gz: ff736a1ccaf5adf12b73caed096d1572db032f0e
5
5
  SHA512:
6
- metadata.gz: a817650035b628993e2d6ba444e6a0eaea3280fade6f9375c902520a9dcb9775bf1ac0b489de25d1e4a3a993ce6966432eeded9765cda841907615eaffa860d0
7
- data.tar.gz: 79da1760f7b9bb2c9bdbac804045882068117cfc981b9d119de9d1faae07f11163f32a21341af482e80682f152c3eeb883fa3831a1aec18a1c0057e6f6624ea0
6
+ metadata.gz: b22592d6b80c69de2cbe62664e4d1fa553d27617ab85efc013f847a6d72df38eb7e8ec168c28047fedea3ba55a4b49a6c81e6981087e3335a29614763be6b443
7
+ data.tar.gz: 04d459960c352b797ea162c6f108b26e9bb4642c378e5e79fe65e853c701cecbda3daf60667fc5096fef12c4db916a8a19506641c773ea4f6207c452b51b52f3
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- #CalabashPageObjects
1
+ #calabash-page-objects
2
2
 
3
3
  ##Automatic waiting for element presence:
4
4
  No more lines of code waiting for an element to be present before clicking it.
@@ -9,7 +9,7 @@ The size of the phone no longer matters! If your element isn't immediately prese
9
9
  ##Easy declaration of hierarchical parent views:
10
10
  Specify the correct list view or webview container that the element lives in as a simple parameter, so CPO knows which one to scroll to find your element.
11
11
 
12
- =====================
12
+ #Overview
13
13
  The Calabash Page Object ruby gem provides a way to define on-screen elements in your application. These elements then have methods defined to make interacting with them in a Calabash test framework easier and more consistent across iOS and Android.
14
14
 
15
15
  The methods can be used whether the application is on iOS or Android.
@@ -40,7 +40,7 @@ The constructors of both classes take a Calabash query string as their only argu
40
40
  ###For Android:
41
41
  To define elements for an Android app:
42
42
  ```
43
- require 'CalabashPageObjects'
43
+ require 'calabash-page-objects'
44
44
  class HomeScreen
45
45
 
46
46
  def initialize
@@ -52,7 +52,7 @@ class HomeScreen
52
52
  ###iOS
53
53
  To define elements for an iOS app:
54
54
  ```
55
- require 'CalabashPageObjects'
55
+ require 'calabash-page-objects'
56
56
  class HomeScreen
57
57
 
58
58
  def initialize
@@ -237,7 +237,7 @@ However, it is not good practice to use hardcoded strings any more than necessar
237
237
 
238
238
  e.g.
239
239
  ```
240
- require 'CalabashPageObjects'
240
+ require 'calabash-page-objects'
241
241
  class PageObjectClass
242
242
 
243
243
  def initialize
@@ -1,4 +1,4 @@
1
1
  # Version information.
2
2
  module CalabashPageObjects
3
- VERSION = '0.5.3'
3
+ VERSION = '0.5.4'
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: calabash-page-objects
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.3
4
+ version: 0.5.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alan Nichols and Andrew Barnett