sauce_whisk 0.0.21 → 0.0.22

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 07502cd983fd25be8386973ff86c35cfec03756e
4
- data.tar.gz: 99324bc172f6da9e9b25113311d4dc25c56a9727
3
+ metadata.gz: 89d29ebcda7557a2e5ed98c88aeb17ac5859ec26
4
+ data.tar.gz: 8e892f48e4dc38470ee16a19023f50f1bf15588e
5
5
  SHA512:
6
- metadata.gz: a00fa7e1ef94866ef796b0179fa7d6fb5723b1577ad9ac30be935ad503b10e54cee04bb403f78488314113c3af5f08968a78b2e37d1760f969d52c44e60bc9fe
7
- data.tar.gz: 775aab6fff42d0f2aa3016c735a9e567330e0866b3b2d055569f8a3e9b1a456fd104b7f9e0a6c6d5a95cca2a9b68dadc4e82668e200066d6b2c2b209dd7e0c00
6
+ metadata.gz: 8badb54788c735cb5976cccb8fdc6c92763e0027bfeea374713ac227a6d4b5cc30c354830f56726e18e5620850a43ab528b97c739cf8927e222702af665ad6a8
7
+ data.tar.gz: 8dd4fedcd7aeff34b512a4f84e304b816f025177a4facd0d4ddb807cf5d92171ae29210572fabd73f0df9da29fd95479aaa6f78f86630e8e01df8e77df3fb024
data/README.md CHANGED
@@ -24,7 +24,7 @@ We recommend setting a hard version for now, as the gem is still kinda beta-y.
24
24
 
25
25
  ## Configuration
26
26
 
27
- You'll need a [Sauce Labs account](http://wwww.saucelabs.com/signup). They're free to try and, if you're an open source project, [your access is always free](http://saucelabs.com/opensauce).
27
+ You'll need a [Sauce Labs account](http://www.saucelabs.com/signup). They're free to try and, if you're an open source project, [your access is always free](http://saucelabs.com/opensauce).
28
28
 
29
29
  ### Values
30
30
  | Value | ENV Variable | Meaning |
@@ -341,6 +341,14 @@ Upload a file.
341
341
  storage.upload '/tmp/sauce/test.zip'
342
342
  ```
343
343
 
344
+ ## Troubleshooting
345
+ ### SSL Problems
346
+ #### SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed (RestClient::SSLCertificateNotVerified)
347
+
348
+ This error is often thrown when you are missing certs. Many thanks to Greg Sypolt who discovered that one possibe cause is:
349
+
350
+ _Ruby 2.2.1 comes packaged with a bad cert since OpenSSL is deprecated in Apple. It doesn't get updated by default with homebrew. This link https://github.com/google/google-api-ruby-client/issues/253 shows you how to fix the SSL issue for 2.2.1 and by moving to 2.2.3 it suppose to be fixed. I upgraded my local and Jenkins to use Ruby 2.2.3 and OpenSSL issues no longer exists._
351
+
344
352
  ## Contributing
345
353
 
346
354
  1. Fork the [sauce-labs version](https://github.com/saucelabs/sauce_whisk) of this repository
data/changelog.markdown CHANGED
@@ -1,4 +1,7 @@
1
1
  # Major Version 0
2
+ ### 0.0.22
3
+ * Looser version requirements (thanks @jeremy)
4
+
2
5
  ### 0.0.21
3
6
  * Jobs.fetch will now _actually_ not swallow RestClient errors
4
7
  * Gem should be faster to install; Test files are no longer included which means no waiting to download fixtures.
@@ -1,3 +1,3 @@
1
1
  module SauceWhisk
2
- VERSION = "0.0.21"
2
+ VERSION = "0.0.22"
3
3
  end
metadata CHANGED
@@ -1,99 +1,99 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sauce_whisk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.21
4
+ version: 0.0.22
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dylan Lacey
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-02-25 00:00:00.000000000 Z
11
+ date: 2017-04-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 1.8.0
19
+ version: '1.8'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: 1.8.0
26
+ version: '1.8'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: json
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: 1.8.1
33
+ version: '1.8'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: 1.8.1
40
+ version: '1.8'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: vcr
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: 2.9.0
47
+ version: '2.9'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: 2.9.0
54
+ version: '2.9'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: webmock
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: 1.21.0
61
+ version: '1.21'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: 1.21.0
68
+ version: '1.21'
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: rspec
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: 3.3.0
75
+ version: '3.3'
76
76
  type: :development
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: 3.3.0
82
+ version: '3.3'
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: rake
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - "~>"
87
+ - - ">="
88
88
  - !ruby/object:Gem::Version
89
- version: 10.4.2
89
+ version: '10.4'
90
90
  type: :development
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
- - - "~>"
94
+ - - ">="
95
95
  - !ruby/object:Gem::Version
96
- version: 10.4.2
96
+ version: '10.4'
97
97
  description: A Wrapper for the Sauce Labs REST API.
98
98
  email:
99
99
  - github@dylanlacey.com
@@ -142,7 +142,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
142
142
  version: '0'
143
143
  requirements: []
144
144
  rubyforge_project:
145
- rubygems_version: 2.4.3
145
+ rubygems_version: 2.6.11
146
146
  signing_key:
147
147
  specification_version: 4
148
148
  summary: Sauce_Whisk lets you mix extra data into your Sauce test results! Fetch and