protractor-rails 0.0.3.pre.alpha → 0.0.3
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 +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +7 -4
- data/lib/protractor/rails/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8bb0466419ef4f6a151545a4d3d3d11d35b298c7
|
|
4
|
+
data.tar.gz: 6b8e5e9f6fedec19ec70b05546a1231beebe7025
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 410898ce501c2cd04a9561e6d9f4a844a19fc2b16a800f57dbeece36e7664f1a8571996dcbea522ea8f021e206e493ac76610a3f960c61c7dfcafaab3de340a2
|
|
7
|
+
data.tar.gz: 0223d7d639ac72b22d35addb973dda9332eacac39eb4f92ea391881451bdb41e7bd0475f7afc947ab9095fb0748b3693a5080e5280fe3ec5c4559ae43d86a639
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Protractor::Rails
|
|
2
2
|
|
|
3
|
-
This gem helps you
|
|
3
|
+
This gem helps you seamlessly setup, run and maintain a angularjs e2e test suite using protractor in a rails application.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
@@ -12,6 +12,9 @@ And then execute the following command to load dependencies on your machine:
|
|
|
12
12
|
|
|
13
13
|
$ rake protractor:install
|
|
14
14
|
|
|
15
|
+
NB: This uses `sudo` so you will need to enter your password
|
|
16
|
+
|
|
17
|
+
|
|
15
18
|
You can test that everything has been set up correctly using the command below.
|
|
16
19
|
This command will run protractor's example configuration and test file against the
|
|
17
20
|
http://angular.org website. If everything starts up ok and runs till the end giving you
|
|
@@ -19,8 +22,6 @@ a summary of test results then you are 'good to go'!
|
|
|
19
22
|
|
|
20
23
|
$ rake protractor:example
|
|
21
24
|
|
|
22
|
-
NB: This uses `sudo` so you will need to enter your password
|
|
23
|
-
|
|
24
25
|
## Usage
|
|
25
26
|
|
|
26
27
|
### Initialization
|
|
@@ -75,7 +76,7 @@ If I have a directory set up for protractor specs in `spec/javascripts/protracto
|
|
|
75
76
|
|
|
76
77
|
```
|
|
77
78
|
|
|
78
|
-
Once you have setup your tests as above, running `rake protractor:spec will
|
|
79
|
+
Once you have setup your tests as above, running `rake protractor:spec` will pick up new tests and run them for you`
|
|
79
80
|
|
|
80
81
|
### Setup and teardown
|
|
81
82
|
|
|
@@ -97,6 +98,8 @@ rspec tests. Keep your integration tests to a minimum and test as much as possib
|
|
|
97
98
|
|
|
98
99
|
## Contributing
|
|
99
100
|
|
|
101
|
+
**Contributions, questions, comments, threats or suggestions are welcome.**
|
|
102
|
+
|
|
100
103
|
1. Fork it ( http://github.com/<my-github-username>/protractor-rails/fork )
|
|
101
104
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
102
105
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: protractor-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.3
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tyrone Wilson
|
|
@@ -106,9 +106,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
106
106
|
version: '0'
|
|
107
107
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
108
108
|
requirements:
|
|
109
|
-
- - "
|
|
109
|
+
- - ">="
|
|
110
110
|
- !ruby/object:Gem::Version
|
|
111
|
-
version:
|
|
111
|
+
version: '0'
|
|
112
112
|
requirements: []
|
|
113
113
|
rubyforge_project:
|
|
114
114
|
rubygems_version: 2.2.2
|