selenium-connect 3.3.0 → 3.3.1
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.
- data/CHANGELOG.md +6 -0
- data/README.md +1 -1
- data/lib/selenium_connect/job.rb +1 -1
- data/selenium-connect.gemspec +2 -2
- data/spec/integration/lib/selenium_connect/runners/sauce_spec.rb +1 -0
- metadata +3 -4
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
#3.3.1 (2013-07-24)
|
|
2
|
+
Fixed bug with the job naming
|
|
3
|
+
|
|
4
|
+
- Bumped version to 3.3.1 to prepare for release.
|
|
5
|
+
- fixed bug with job nameing per new configurations
|
|
6
|
+
|
|
1
7
|
#3.3.0 (2013-07-24)
|
|
2
8
|
updated configuration to support any sauce config and set default sauce selenium version
|
|
3
9
|
|
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#selenium-connect 3.3.
|
|
1
|
+
#selenium-connect 3.3.1 (2013-07-24)
|
|
2
2
|
|
|
3
3
|
[](http://badge.fury.io/rb/selenium-connect) [](https://travis-ci.org/arrgyle/selenium-connect) [](https://codeclimate.com/github/arrgyle/selenium-connect) [](https://coveralls.io/r/arrgyle/selenium-connect?branch=develop)
|
|
4
4
|
|
data/lib/selenium_connect/job.rb
CHANGED
|
@@ -21,7 +21,7 @@ class SeleniumConnect
|
|
|
21
21
|
def start(opts = {})
|
|
22
22
|
@job_name = slugify_name opts[:name] if opts.has_key? :name
|
|
23
23
|
# TODO this could be refactored out into an options parser of sorts
|
|
24
|
-
@config.
|
|
24
|
+
@config.sauce_opts.job_name = @job_name ||= 'unnamed_job'
|
|
25
25
|
@driver = Runner.new(@config).driver
|
|
26
26
|
end
|
|
27
27
|
|
data/selenium-connect.gemspec
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'selenium-connect'
|
|
3
|
-
s.version = '3.3.
|
|
3
|
+
s.version = '3.3.1'
|
|
4
4
|
s.platform = Gem::Platform::RUBY
|
|
5
5
|
s.authors = ['Dave Haeffner', 'Jason Fox']
|
|
6
6
|
s.email = ['dave@arrgyle.com', 'jason@arrgyle.com']
|
|
7
7
|
s.homepage = 'https://github.com/arrgyle/selenium-connect'
|
|
8
8
|
s.summary = 'A stupid simple way to run your Selenium tests on localhost, against a Selenium Grid, or in the cloud (e.g. SauceLabs).'
|
|
9
|
-
s.description = '
|
|
9
|
+
s.description = 'Fixed bug with the job naming'
|
|
10
10
|
s.license = 'MIT'
|
|
11
11
|
|
|
12
12
|
s.files = `git ls-files`.split($/)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: selenium-connect
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.3.
|
|
4
|
+
version: 3.3.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -140,8 +140,7 @@ dependencies:
|
|
|
140
140
|
- - ~>
|
|
141
141
|
- !ruby/object:Gem::Version
|
|
142
142
|
version: 0.6.7
|
|
143
|
-
description:
|
|
144
|
-
selenium version
|
|
143
|
+
description: Fixed bug with the job naming
|
|
145
144
|
email:
|
|
146
145
|
- dave@arrgyle.com
|
|
147
146
|
- jason@arrgyle.com
|
|
@@ -222,7 +221,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
222
221
|
version: '0'
|
|
223
222
|
segments:
|
|
224
223
|
- 0
|
|
225
|
-
hash: -
|
|
224
|
+
hash: -2232335152555328092
|
|
226
225
|
requirements: []
|
|
227
226
|
rubyforge_project:
|
|
228
227
|
rubygems_version: 1.8.25
|