test-page 1.0.0 → 1.0.1

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: 590ee0360bc5ef1d9d852b0c0351d29443a672ce
4
- data.tar.gz: 5c33ccb11cc3a03b46068d4aac54ad2da31dfe93
3
+ metadata.gz: dd11cd1616b7603ec16ac8938517551b868d5df8
4
+ data.tar.gz: 8010024851ef200b354f5020b3627082e84bac07
5
5
  SHA512:
6
- metadata.gz: fd0d9b76762ea5586518f0a2dbf3dcf5f729ee5f49782abaec7d3c7e87d72fd0ccce118e8eb24177a5b2d923b77fe073a43accbef581db52b06dd94a734ff3b5
7
- data.tar.gz: 595da631110d6fcadda2336569f39afd0e3ba45e158ed48d73ebe0e68567a48901777a0de24874042d6c217e5dd35f556509f93b84a61fd8ef23c07414f12dcc
6
+ metadata.gz: 21a6fb78226c8e55b891bffb883eac08ae4c0266297ec182af7b7e78f87e684c54edb1f4ea79aef6e838cbd173996c6868ca5a0c35b02ea219971436ba9dd92d
7
+ data.tar.gz: d47187fdd18c45aaf6d2fc12a22953b9696bb0dfe4b66def9064817104f66c553f2fad5a3781a10313363782c73cc8a9c0d943f6441d530951e9f3308ab6c792
data/CHANGES.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 1.0.1
2
+
3
+ * Rename all occurrences of "Test::Page" to "test-page" in readme.
4
+
1
5
  # 1.0.0
2
6
 
3
7
  * Remove Page#modify - use plain old Ruby code for easier understanding and better maintainability instead.
data/README.md CHANGED
@@ -1,15 +1,15 @@
1
- # Test::Page
1
+ # test-page
2
2
  [![Gem Version](https://badge.fury.io/rb/test-page.png)](http://badge.fury.io/rb/test-page)
3
3
  [![Build Status](https://secure.travis-ci.org/jarmo/test-page.png)](http://travis-ci.org/jarmo/test-page)
4
4
  [![Coverage](https://coveralls.io/repos/jarmo/test-page/badge.png?branch=master)](https://coveralls.io/r/jarmo/test-page)
5
5
  [![Dependency Status](https://gemnasium.com/jarmo/test-page.png)](https://gemnasium.com/jarmo/test-page)
6
6
  [![Code Climate](https://codeclimate.com/github/jarmo/test-page.png)](https://codeclimate.com/github/jarmo/test-page)
7
7
 
8
- Test::Page helps you to write easily maintainable integration tests by implementing [Page Objects](https://code.google.com/p/selenium/wiki/PageObjects) pattern.
8
+ test-page helps you to write easily maintainable integration tests by implementing [Page Objects](https://code.google.com/p/selenium/wiki/PageObjects) pattern.
9
9
 
10
10
  Page Objects may be objects representing whole pages like LoginPage, ProfilePage or part of the pages like LoginForm, Header etc.
11
11
 
12
- Test::Page can be described like:
12
+ test-page can be described like:
13
13
 
14
14
  * Is framework agnostic - you can use it with any library you want - [Watir](http://watir.com), [Selenium](http://seleniumhq.org/), [Capybara](https://github.com/jnicklas/capybara) etc.
15
15
  * Has really [easy API](http://rubydoc.info/github/jarmo/test-page/frames) - you can start testing right away instead of spending too much time to learn new framework.
@@ -1,5 +1,5 @@
1
1
  module Test
2
2
  class Page
3
- VERSION = "1.0.0"
3
+ VERSION = "1.0.1"
4
4
  end
5
5
  end
@@ -4,8 +4,8 @@ require File.expand_path('../lib/test/page/version', __FILE__)
4
4
  Gem::Specification.new do |gem|
5
5
  gem.authors = ["Jarmo Pertman"]
6
6
  gem.email = ["jarmo.p@gmail.com"]
7
- gem.description = %q{Test::Page helps you to write easily maintainable integration tests by using Watir, Selenium or any other testing library.}
8
- gem.summary = %q{Test::Page helps you to write easily maintainable integration tests by using Watir, Selenium or any other testing library.}
7
+ gem.description = %q{test-page helps you to write easily maintainable integration tests by using Watir, Selenium or any other testing library.}
8
+ gem.summary = %q{test-page helps you to write easily maintainable integration tests by using Watir, Selenium or any other testing library.}
9
9
  gem.homepage = "https://github.com/jarmo/test-page"
10
10
 
11
11
  gem.files = `git ls-files`.split($\)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: test-page
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jarmo Pertman
@@ -80,7 +80,7 @@ dependencies:
80
80
  - - '>='
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0'
83
- description: Test::Page helps you to write easily maintainable integration tests by
83
+ description: test-page helps you to write easily maintainable integration tests by
84
84
  using Watir, Selenium or any other testing library.
85
85
  email:
86
86
  - jarmo.p@gmail.com
@@ -130,7 +130,7 @@ rubyforge_project:
130
130
  rubygems_version: 2.0.7
131
131
  signing_key:
132
132
  specification_version: 4
133
- summary: Test::Page helps you to write easily maintainable integration tests by using
133
+ summary: test-page helps you to write easily maintainable integration tests by using
134
134
  Watir, Selenium or any other testing library.
135
135
  test_files:
136
136
  - spec/spec_helper.rb