angular_automation 1.0.1 → 1.0.2
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 +1 -0
- data/angular_automation.gemspec +3 -0
- data/lib/angular_automation/version.rb +1 -1
- data/release_notes.md +6 -0
- metadata +15 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 647de02d3f640557524d280f4196e2174f15e4ed
|
|
4
|
+
data.tar.gz: bb76a956db45f228837dece5cf3534e8eef1a22c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a8b84269ad187b45cf61a75fff35109dac8000fb49cfa2ab6cbf6fde86678c724cc14af353b43f3d1ed5ff206e3ed7aba831f3516ee8edb5e4a8a912a10f514e
|
|
7
|
+
data.tar.gz: 3021f0d90199dc333a94b7526b6daabe5a0cea7bb625b1952fb4f118df50922397a4e668b16705aff1f3626755f003626b63f50c6cdd5c86d52b36fcc5bf3bf3
|
data/README.md
CHANGED
|
@@ -17,6 +17,7 @@ Gem | Description
|
|
|
17
17
|
[**pry**](https://github.com/pry/pry) | pry is used for debugging
|
|
18
18
|
[**rake**](https://github.com/ruby/rake) | rake is used for sauce tasks and the stub generation task
|
|
19
19
|
[**page_object**](https://github.com/bootstraponline/page_object) | fork of the page-object gem with bug fixes and code coverage
|
|
20
|
+
[**webdriver_utils**](https://github.com/bootstraponline/webdriver_utils) | util methods for webdriver such as waiting and page object helpers
|
|
20
21
|
[**sauce-connect**](https://github.com/saucelabs/sauce_ruby/tree/master/gems/sauce-connect) | sauce connect is used for running locally (outside of jenkins)
|
|
21
22
|
[**sauce_platforms**](https://github.com/bootstraponline/sauce_platforms) | Dependency free DSL for specifying [Sauce Labs platforms](https://saucelabs.com/platforms/)
|
|
22
23
|
[**sauce_connect_ruby**](https://github.com/bootstraponline/sauce_connect_ruby) | Ruby example that uses all the angular_automation gems
|
data/angular_automation.gemspec
CHANGED
|
@@ -17,6 +17,9 @@ Gem::Specification.new do |spec|
|
|
|
17
17
|
# brings in selenium-webdriver, watir-webdriver, webdriver_utils
|
|
18
18
|
spec.add_runtime_dependency 'angular_webdriver', '>= 1.0.4'
|
|
19
19
|
|
|
20
|
+
# make sure we're using latest webdriver_utils
|
|
21
|
+
spec.add_runtime_dependency 'webdriver_utils', '>= 1.0.0'
|
|
22
|
+
|
|
20
23
|
spec.add_runtime_dependency 'rspec_flake', '>= 0.2.3'
|
|
21
24
|
spec.add_runtime_dependency 'rspec_junit', '>= 3.0.0'
|
|
22
25
|
spec.add_runtime_dependency 'angular_page_object', '>= 1.0.1'
|
data/release_notes.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
#### v1.0.2 2015-06-19
|
|
2
|
+
|
|
3
|
+
- [e652dd9](https://github.com/bootstraponline/angular_automation/commit/e652dd938a67be4511af1948630719808d702804) Release 1.0.2
|
|
4
|
+
- [5df5cf0](https://github.com/bootstraponline/angular_automation/commit/5df5cf0701e0842db6166a66943fc3f6e0b08128) Add webdriver_utils 1.0.0
|
|
5
|
+
|
|
6
|
+
|
|
1
7
|
#### v1.0.1 2015-06-19
|
|
2
8
|
|
|
3
9
|
- [75754f5](https://github.com/bootstraponline/angular_automation/commit/75754f5d7b8a98cb71e9cac78140e6c6af368471) Release 1.0.1
|
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.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- code@bootstraponline.com
|
|
@@ -24,6 +24,20 @@ dependencies:
|
|
|
24
24
|
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: 1.0.4
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: webdriver_utils
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: 1.0.0
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ">="
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: 1.0.0
|
|
27
41
|
- !ruby/object:Gem::Dependency
|
|
28
42
|
name: rspec_flake
|
|
29
43
|
requirement: !ruby/object:Gem::Requirement
|