angular_automation 1.0.9 → 1.0.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/angular_automation.rb +7 -1
- data/lib/angular_automation/version.rb +2 -2
- data/release_notes.md +6 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 57833689616fd2319dc80013f4a945aa9c240ecb
|
4
|
+
data.tar.gz: 3796cca8b607801266f63d07da9723c7969c5786
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3495486b6fac9b94b1baeafb60475ae10d5dae6174a917f4ba03badb4a5218b2825269a3908779c74e8f92996007331f49167384038e906b3d548d395b0b97eb
|
7
|
+
data.tar.gz: d74e295316ae723838f482d3146b9ded529b79cf6027e635f9e0d72c82f5ddfe5ad1d2af73713a958a9ede03d39d028fd6d56f7476674c220f54bf2613c2a731
|
data/lib/angular_automation.rb
CHANGED
@@ -5,12 +5,18 @@ require 'rspec_junit'
|
|
5
5
|
require 'page_object'
|
6
6
|
require 'angular_webdriver' # requires selenium-webdriver and watir-webdriver
|
7
7
|
require 'page_object_stubs'
|
8
|
-
require 'sauce' # sauce_ruby
|
9
8
|
require 'trace_files'
|
10
9
|
require 'pry'
|
11
10
|
require 'sauce_platforms'
|
12
11
|
require 'webdriver_utils'
|
13
12
|
require 'rspec'
|
14
13
|
|
14
|
+
# sauce_ruby is **not** required by default so that angular_automation
|
15
|
+
# can easily work with other cloud providers. also the sauce gem
|
16
|
+
# inserts rspec hooks that are sauce specific.
|
17
|
+
#
|
18
|
+
# require 'sauce'
|
19
|
+
|
20
|
+
|
15
21
|
# internal
|
16
22
|
require_relative 'angular_automation/version'
|
@@ -1,4 +1,4 @@
|
|
1
1
|
module AngularAutomation
|
2
|
-
VERSION = '1.0.
|
3
|
-
DATE = '2015-
|
2
|
+
VERSION = '1.0.10' unless defined? ::AngularAutomation::VERSION
|
3
|
+
DATE = '2015-08-20' unless defined? ::AngularAutomation::DATE
|
4
4
|
end
|
data/release_notes.md
CHANGED
@@ -1,3 +1,9 @@
|
|
1
|
+
#### v1.0.10 2015-08-20
|
2
|
+
|
3
|
+
- [0fba9b7](https://github.com/bootstraponline/angular_automation/commit/0fba9b7de8db518d3f13eb290ab2b38e281c1463) Release 1.0.10
|
4
|
+
- [b83424a](https://github.com/bootstraponline/angular_automation/commit/b83424ac89e3357afeb80b81805641f3dc9ae2da) Don't require sauce by default
|
5
|
+
|
6
|
+
|
1
7
|
#### v1.0.9 2015-06-26
|
2
8
|
|
3
9
|
- [3e527f4](https://github.com/bootstraponline/angular_automation/commit/3e527f46f5c466a3e1aed57576a5f12130dfeb15) Release 1.0.9
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- code@bootstraponline.com
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-08-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: angular_webdriver
|