sauce_whisk 0.2.1 → 0.2.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 +4 -1
- data/changelog.markdown +4 -0
- data/lib/sauce-whisk.rb +1 -1
- data/lib/sauce_whisk/version.rb +1 -1
- 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: b4ba57b3ef6871946459e938ca0ec2c4ce6b768a
|
|
4
|
+
data.tar.gz: 56b1374f459c02c1b462efe3da7a26cbb09b5e68
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e6b1cbaffdd9e2c4790c8fe3ea4b5b7be3fb2557b018f9798228d3d06b57e267ad3e54d8d73242bde866210dda1ec9988b7d15537e35b52849da42683edf59e5
|
|
7
|
+
data.tar.gz: 383483e7a75c2da27ea6966bcd7f4e0aab3557bc0af3d3b6a05ccafe5ed3284c6f801a56818d452d3badb146c2d0bfe645f3c7446a438566d860174899dc4d4d
|
data/README.md
CHANGED
|
@@ -30,7 +30,8 @@ You'll need a [Sauce Labs account](http://www.saucelabs.com/signup). They're fr
|
|
|
30
30
|
As Sauce Labs now has two data centers, you'll need to select the DC your account is located in.
|
|
31
31
|
|
|
32
32
|
Choose `:EU_VDC` for the European Data Center.
|
|
33
|
-
Choose `:
|
|
33
|
+
Choose `:US_WEST` for the US West Coast Data Center.
|
|
34
|
+
Choose `:US_EAST` for the US East Coast Data Center (currently only in use with Headless).
|
|
34
35
|
|
|
35
36
|
Read more about the data center options [here](https://wiki.saucelabs.com/display/DOCS/Accessing+the+API).
|
|
36
37
|
|
|
@@ -57,6 +58,8 @@ SauceWhisk.asset_fetch_retries = 5
|
|
|
57
58
|
#### The Sauce gem
|
|
58
59
|
If you have the Sauce gem required, the SauceWhisk gem will try to read its configuration from the Sauce gem's configuration.
|
|
59
60
|
|
|
61
|
+
NB: The Sauce gem is deprecated. We recommend using different configuration techniques.
|
|
62
|
+
|
|
60
63
|
#### ondemand.yml
|
|
61
64
|
If you have an ondemand.yml, the SauceWhisk gem will try to read its configuration from that file. The locations the gem looks for a ondemand.yml are, in order:
|
|
62
65
|
|
data/changelog.markdown
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
# Major Version 0
|
|
2
2
|
## Minor Version 0.2
|
|
3
|
+
### 0.2.2
|
|
4
|
+
* Fixed require in `lib\sauce-whisk` to refer to the correct file; Thanks @anthony-chu!
|
|
5
|
+
|
|
3
6
|
### 0.2.1
|
|
4
7
|
* Added US_EAST option for headless
|
|
5
8
|
* Changed preferred value from US_VDC to US_WEST. US_VDC wil continue to work.
|
|
6
9
|
* @juandelgado added tunnel_identifier to Tunnels endpoint, closing #59; Thanks!
|
|
10
|
+
|
|
7
11
|
### 0.2.0
|
|
8
12
|
* Added the ability to select between US & EU VDC
|
|
9
13
|
* Made US VDC the default endpoint
|
data/lib/sauce-whisk.rb
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
require '
|
|
1
|
+
require 'sauce_whisk'
|
data/lib/sauce_whisk/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sauce_whisk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dylan Lacey
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-08-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rest-client
|