page_right 0.4 → 0.4.1

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: 03bb63f1e3959333578a8cef939d0db37e22eb1c
4
- data.tar.gz: 2962e93f840f68bf441ddfc8b21d57c4376a8f34
3
+ metadata.gz: d92b143be40fcef537ffad9aae5227c7f7c2100d
4
+ data.tar.gz: c46c20b7af06644391ac87ecac082e355225effb
5
5
  SHA512:
6
- metadata.gz: c08854273c6ce8c4b2117ace6b1be12354cbc943156ae293724855433b11c3c04d77a3e1704d0ca5a675187284ac5d67c4f6bca78525f9ff3aa44979a1859b76
7
- data.tar.gz: 365592ec0dbf11b7cec3469ab906cb5c6b89804cb1208cfbfbe0597cb534a7596f83f5963b4d7c2e666f86ec2a83c2ac2feec5073bd339d03e0c813d36754411
6
+ metadata.gz: 5d5bdc257ef4dab26d30a0cd80875c6dbf0e0883fc49e5754b1cc6cb67ce71a49379d444ecce0b5f55d683b13cc938ca9353173e6c516abf4a6337765f538601
7
+ data.tar.gz: 5a5c5d217049762ce7ced4406074461777b2862145b2e76cf0249a41e2b74c89c2e16ce10e28e089443c04ea0fb311c4956d584d436556ef4aec75c472636f83
data/CHANGES.md CHANGED
@@ -1,4 +1,9 @@
1
- 0.3
1
+ 0.4.1
2
+ --------------------
3
+
4
+ - Minor fix to README.md page
5
+
6
+ 0.4
2
7
  --------------------
3
8
 
4
9
  - Migrated original code from the old page-right gem to this new page_right gem and separated out the methods into sub files.
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  ## PageRight Gem - Checks the content of your rendered web pages. `Currently under development !!`
2
2
 
3
- Version 0.4 20th November 2014
3
+ Version 0.4.1 20th November 2014
4
4
 
5
5
  A very simple gem that contains a few helper/wrapper methods utilising Capybara to aid testing the contents of a rendered web page when writing integration tests.
6
6
 
@@ -16,7 +16,7 @@ Include it in your Gemfile.
16
16
  gem 'page_right'
17
17
  ```
18
18
 
19
- Then require it in you `test_helper.rb` file.
19
+ Then require it in your `test_helper.rb` file.
20
20
 
21
21
  ```ruby
22
22
  require 'page_right'
@@ -56,6 +56,7 @@ Check `This text` is within a class called `named-class`.
56
56
 
57
57
  ```ruby
58
58
  text_in_section('#named-id', 'Your text here', false)
59
+ ```
59
60
 
60
61
  Check `This text` is not within any id called `named-id`
61
62
 
@@ -1,3 +1,3 @@
1
1
  module PageRight
2
- VERSION = "0.4"
2
+ VERSION = "0.4.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: page_right
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.4'
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dave Collier