angular_automation 1.0.3 → 1.0.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 +4 -4
- data/README.md +6 -7
- data/angular_automation.gemspec +1 -1
- data/lib/angular_automation.rb +1 -1
- data/lib/angular_automation/version.rb +1 -1
- data/release_notes.md +6 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b927dacf54c88f4dc55b15d428528b4b1dde3042
|
4
|
+
data.tar.gz: 639d6ec28a211eb813fe45b758a24edf4546f87e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 84e9ccf636e7c24848bc37438d1834034c59c68e9e4eb86b39544bb3b302b5d4a8e2c3e0488b32fec28166defc683a0dfb676dd64804cd8ef6a20fa617dc8391
|
7
|
+
data.tar.gz: 8045f1685bfd9275711c08fa900464d6f7e7a8f37214e4160db2c6a24300aba481ebf0ec9f96e322b44c7564dac7aad1b8762826df66576298cedd4b2e3c0a54
|
data/README.md
CHANGED
@@ -9,7 +9,6 @@ Gem | Description
|
|
9
9
|
--- | ---
|
10
10
|
[**rspec_flake**](https://github.com/bootstraponline/rspec_flake) | measure test flakiness and performance.
|
11
11
|
[**rspec_junit**](https://github.com/bootstraponline/rspec_junit) | junit xml reporter that works with rspec_flake
|
12
|
-
[**angular_page_object**](https://github.com/bootstraponline/angular_page_object) | page object gem with bug fixes and angular helpers
|
13
12
|
[**angular_webdriver**](https://github.com/bootstraponline/angular_webdriver) | Protractor client side scripts integrated with Ruby webdriver
|
14
13
|
[**page_object_stubs**](https://github.com/bootstraponline/page_object_stubs) | page object stub generator for RubyMine
|
15
14
|
[**sauce_ruby**](https://github.com/bootstraponline/sauce_ruby) | sauce labs gem with bug fixes
|
@@ -22,6 +21,11 @@ Gem | Description
|
|
22
21
|
[**sauce_platforms**](https://github.com/bootstraponline/sauce_platforms) | Dependency free DSL for specifying [Sauce Labs platforms](https://saucelabs.com/platforms/)
|
23
22
|
[**sauce_connect_ruby**](https://github.com/bootstraponline/sauce_connect_ruby) | Ruby example that uses all the angular_automation gems
|
24
23
|
|
24
|
+
Other gems used:
|
25
|
+
|
26
|
+
- [selenium-webdriver](https://rubygems.org/gems/selenium-webdriver) - upstream selenium webdriver gem
|
27
|
+
- [watir-webdriver](https://github.com/watir/watir-webdriver) - watir framework built on top of webdriver
|
28
|
+
|
25
29
|
Note that the Sauce Connect gem should be avoided at all cost due to
|
26
30
|
bugs such as [crashing](https://github.com/saucelabs/sauce_ruby/issues/317),
|
27
31
|
[infinite looping](https://github.com/saucelabs/sauce_ruby/issues/316), and
|
@@ -29,11 +33,6 @@ bugs such as [crashing](https://github.com/saucelabs/sauce_ruby/issues/317),
|
|
29
33
|
The recommended way is to use the Sauce Jenkins plugin to fully handle
|
30
34
|
the SC lifecycle and avoid the broken Ruby sauce connect code.
|
31
35
|
|
32
|
-
The angular_page_object gem depends on:
|
33
|
-
|
34
|
-
- [page_object](https://github.com/bootstraponline/page_object) - page object gem
|
35
|
-
- [selenium-webdriver](https://rubygems.org/gems/selenium-webdriver) - upstream selenium webdriver gem
|
36
|
-
- [watir-webdriver](https://github.com/watir/watir-webdriver) - watir framework built on top of webdriver
|
37
36
|
|
38
37
|
The rspec_junit gem depends on rspec.
|
39
38
|
|
@@ -43,7 +42,7 @@ The rspec_junit gem depends on rspec.
|
|
43
42
|
|
44
43
|
The general use case is:
|
45
44
|
|
46
|
-
- Tests use the
|
45
|
+
- Tests use the page_object gem with stubs & sauce labs integration
|
47
46
|
- Setup Jenkins with Sauce OnDemand plugin to use Sauce Connect & enable reporting
|
48
47
|
- make sure to check [`Launch Sauce Connect on Slave`](https://wiki.cloudbees.com/bin/view/DEV/Sauce%20OnDemand%20Service)
|
49
48
|
- `Sauce OnDemand support` must be checked
|
data/angular_automation.gemspec
CHANGED
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
|
|
22
22
|
|
23
23
|
spec.add_runtime_dependency 'rspec_flake', '>= 0.2.3'
|
24
24
|
spec.add_runtime_dependency 'rspec_junit', '>= 3.0.0'
|
25
|
-
spec.add_runtime_dependency '
|
25
|
+
spec.add_runtime_dependency 'page_object', '>= 1.1.2'
|
26
26
|
spec.add_runtime_dependency 'page_object_stubs', '>= 1.0.1'
|
27
27
|
spec.add_runtime_dependency 'sauce_ruby', '>= 3.5.10'
|
28
28
|
spec.add_runtime_dependency 'trace_files', '>= 1.0.0'
|
data/lib/angular_automation.rb
CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
|
|
2
2
|
|
3
3
|
require 'rspec_flake'
|
4
4
|
require 'rspec_junit'
|
5
|
-
require '
|
5
|
+
require 'page-object' # page_object fork
|
6
6
|
require 'angular_webdriver' # requires selenium-webdriver and watir-webdriver
|
7
7
|
require 'page_object_stubs'
|
8
8
|
require 'sauce' # sauce_ruby
|
data/release_notes.md
CHANGED
@@ -1,3 +1,9 @@
|
|
1
|
+
#### v1.0.4 2015-06-19
|
2
|
+
|
3
|
+
- [08110a9](https://github.com/bootstraponline/angular_automation/commit/08110a99b8c23bc408a38ae3dfb7d5a8c7416b49) Release 1.0.4
|
4
|
+
- [33ecc19](https://github.com/bootstraponline/angular_automation/commit/33ecc192284d05302485245f22bdf42cdec8388a) Replace angular_page_object with page_object
|
5
|
+
|
6
|
+
|
1
7
|
#### v1.0.3 2015-06-19
|
2
8
|
|
3
9
|
- [8c0d24a](https://github.com/bootstraponline/angular_automation/commit/8c0d24a9bb06afea600a3880ed5c77b7d8b91295) Release 1.0.3
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: angular_automation
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- code@bootstraponline.com
|
@@ -67,19 +67,19 @@ dependencies:
|
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: 3.0.0
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
|
-
name:
|
70
|
+
name: page_object
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
73
|
- - ">="
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version: 1.
|
75
|
+
version: 1.1.2
|
76
76
|
type: :runtime
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
80
|
- - ">="
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version: 1.
|
82
|
+
version: 1.1.2
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
84
|
name: page_object_stubs
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|