sauce-cucumber 3.1.1 → 3.2.0

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,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- ZTU1MTg0NjY2NTI2YTg3OGEzNzkxZGFiMTc0NGQzZTI1MTg4NjUzYg==
4
+ NDkxMjQ3OGRhOTJkYTBlMDZiOTY4NjQwN2MzMjE0ZDFmNmVhNzE3Zg==
5
5
  data.tar.gz: !binary |-
6
- NDkzOGIwZTg0NzZkMzA5MmIyZDY1MzAxNWM5YTZhNDA2M2MzMTNkOA==
6
+ ZmM5OGZlNzQwNzE5MmYxNDUzNmE1MDgzNDMzNjI5YTZjYzNkZTFhYg==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- ZTcwZjAzNzU2N2MwMjNiOGQzOWRkMzgyNDcxZTBjODRlMjIwNDMzNTRhODBk
10
- MWFmYTM5OGZjYThhMzAyNGVhNjMwMDlhYzNkODI2Y2VjYWQ1NTJjNjYzMmQx
11
- NzU3ZTFjZGRmZGU2ZGVhOWU4ZjIyN2Q5ZGRiZDVmZTM2MjE2NGM=
9
+ OTE3ZmZkNzRjMTY2YTRiNzNiYWU4NDBiZjAwODgzOWRjZTBkMWZjOGViZjM3
10
+ OTA0ZmU1Y2IzZDY4OTYwYWZmNTkxMTIwZTViNzQ2ZDRhNDVhMzkxN2Q3MzUw
11
+ MWNiZTRlY2E1NTRjNzEzNGFiZmQ3NjJhZjYxZmFkOWMxNDAwMjM=
12
12
  data.tar.gz: !binary |-
13
- M2I1NTQxZWQ0OGI2MDA3NDIyZDJlMWZkOTZjM2IyNTM4YTMwMDRmYWJiMjNm
14
- ZjIyYTI4MjFiZDMzNTM1MDY4NjhhNTZiYjM0MTJjMTQyNDRjNjY3N2UwYTNk
15
- N2YzMzM0NTZmZmZjMTJkZDgxOWEwZmU1OGI3YTQyNmVkZmNjZGM=
13
+ ZjgwMjAzYzkzZTdhMmRiNTAzZmU4MDU4MTYxY2I0MTgxYjM5NDY2ODM4MmJk
14
+ YzkyNTgxNDFmYWNkZjJiZTM4YzIwNmE3YzI3Njg3YzcxNGI4N2IzNjQ1OGVl
15
+ YzA3YTgxZjcyNmViMWE5MWUyNTk2MTY4ZTAyMjE2YjY1MTBlYzc=
@@ -0,0 +1,5 @@
1
+ Changelog
2
+ =========
3
+ 3.1.2
4
+ -----
5
+ * Removed Sauce::Job is favour of sauce\_whisk
@@ -3,6 +3,7 @@ require 'cucumber'
3
3
  require 'sauce/job'
4
4
  require 'sauce/capybara'
5
5
  require 'sauce/utilities'
6
+ require 'sauce_whisk'
6
7
 
7
8
  module Sauce
8
9
  module Capybara
@@ -117,7 +118,7 @@ module Sauce
117
118
  puts output.join(' ')
118
119
  end
119
120
 
120
- job = Sauce::Job.new('id' => session_id,
121
+ job = SauceWhisk::Job.new('id' => session_id,
121
122
  'name' => job_name,
122
123
  'custom-data' => custom_data)
123
124
  job.save unless job.nil?
@@ -157,6 +158,7 @@ begin
157
158
 
158
159
  at_exit do
159
160
  Sauce::Utilities::Connect.close
161
+ Sauce::Utilities.warn_if_suspect_misconfiguration(:cucumber)
160
162
  end
161
163
 
162
164
  rescue NoMethodError # This makes me sad
@@ -2,8 +2,8 @@
2
2
  require File.expand_path(File.dirname(__FILE__) + '/../../lib/sauce/version')
3
3
 
4
4
  Gem::Specification.new do |gem|
5
- gem.authors = ["R. Tyler Croy"]
6
- gem.email = ["tyler@monkeypox.org"]
5
+ gem.authors = ["R. Tyler Croy", "Dylan Lacey"]
6
+ gem.email = ["tyler@monkeypox.org, dylan@saucelabs.com"]
7
7
  gem.description = ''
8
8
  gem.summary = ''
9
9
  gem.homepage = ""
@@ -13,8 +13,9 @@ Gem::Specification.new do |gem|
13
13
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
14
14
  gem.name = "sauce-cucumber"
15
15
  gem.require_paths = ["lib"]
16
- gem.version = "#{Sauce::MAJOR_VERSION}.1"
16
+ gem.version = "#{Sauce::MAJOR_VERSION}.0"
17
17
 
18
18
  gem.add_dependency('sauce', "~> #{Sauce.version}")
19
+ gem.add_dependency('sauce_whisk', "~>0.0.10")
19
20
  gem.add_dependency('cucumber', '>= 1.2.0')
20
21
  end
metadata CHANGED
@@ -1,14 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sauce-cucumber
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.1
4
+ version: 3.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - R. Tyler Croy
8
+ - Dylan Lacey
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
- date: 2013-08-02 00:00:00.000000000 Z
12
+ date: 2013-09-25 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
15
  name: sauce
@@ -16,14 +17,28 @@ dependencies:
16
17
  requirements:
17
18
  - - ~>
18
19
  - !ruby/object:Gem::Version
19
- version: 3.1.1
20
+ version: 3.2.0
20
21
  type: :runtime
21
22
  prerelease: false
22
23
  version_requirements: !ruby/object:Gem::Requirement
23
24
  requirements:
24
25
  - - ~>
25
26
  - !ruby/object:Gem::Version
26
- version: 3.1.1
27
+ version: 3.2.0
28
+ - !ruby/object:Gem::Dependency
29
+ name: sauce_whisk
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ~>
33
+ - !ruby/object:Gem::Version
34
+ version: 0.0.10
35
+ type: :runtime
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ~>
40
+ - !ruby/object:Gem::Version
41
+ version: 0.0.10
27
42
  - !ruby/object:Gem::Dependency
28
43
  name: cucumber
29
44
  requirement: !ruby/object:Gem::Requirement
@@ -40,7 +55,7 @@ dependencies:
40
55
  version: 1.2.0
41
56
  description: ''
42
57
  email:
43
- - tyler@monkeypox.org
58
+ - tyler@monkeypox.org, dylan@saucelabs.com
44
59
  executables: []
45
60
  extensions: []
46
61
  extra_rdoc_files: []
@@ -48,6 +63,7 @@ files:
48
63
  - .gitignore
49
64
  - README.md
50
65
  - Rakefile
66
+ - changelog.markdown
51
67
  - lib/sauce/cucumber.rb
52
68
  - sauce-cucumber.gemspec
53
69
  homepage: ''