Skip to content

Commit

Permalink
update default selenium jar version to 2.39.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua Hoblitt committed Dec 20, 2013
1 parent b1afa01 commit 0b42040
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ other than the selenium role account.
```
/opt/selenium
|-- jars
| `-- selenium-server-standalone-2.37.0.jar
| `-- selenium-server-standalone-x.xx.x.jar
`-- log
|-- hub_stderr.log
|-- hub_stdout.log
Expand All @@ -178,7 +178,7 @@ class { 'selenium':
group => 'selenium',
install_root => '/opt/selenium',
java => 'java',
version => '2.37.0',
version => '2.39.0',
url => undef,
}
```
Expand Down Expand Up @@ -211,7 +211,7 @@ class { 'selenium':

* `version`

`String` defaults to: `2.37.0` (the latest release as of 2013-12-04)
`String` defaults to: `2.39.0` (the latest release as of 2013-12-20)

The version of Selenium Server to download. Used to form the URL used to
fetch the jar file.
Expand Down
4 changes: 2 additions & 2 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# group => 'selenium',
# install_root => '/opt/selenium',
# java => 'java',
# version => '2.35.0',
# version => '2.39.0',
# url => undef,
# }
# ```
Expand Down Expand Up @@ -47,7 +47,7 @@
#
# #### `version`
#
# `String` defaults to: `2.35.0` (the latest release as of 2013-10-08)
# `String` defaults to: `2.39.0` (the latest release as of 2013-12-20)
#
# The version of Selenium Server to download. Used to form the URL used to
# fetch the jar file.
Expand Down
2 changes: 1 addition & 1 deletion manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
$hub_options = '-role hub'
$node_options = "${server_options} -role node"
$java = 'java'
$version = '2.37.0'
$version = '2.39.0'
$default_hub = 'http://localhost:4444/grid/register'

case $::osfamily {
Expand Down
2 changes: 1 addition & 1 deletion spec/classes/selenium_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
:group => 'selenium',
:install_root => '/opt/selenium',
:java => 'java',
:version => '2.37.0',
:version => '2.39.0',
:url => '',
}

Expand Down
6 changes: 3 additions & 3 deletions spec/defines/selenium_config_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
:display => ':0',
:user => 'selenium',
:install_root => '/opt/selenium',
:jar_name => 'selenium-server-standalone-2.37.0.jar',
:jar_name => 'selenium-server-standalone-2.39.0.jar',
:options => '-Dwebdriver.enable.native.events=1',
:java => 'java',
}
Expand Down Expand Up @@ -57,7 +57,7 @@
:display => 'X:0',
:user => 'Xselenium',
:install_root => 'X/opt/selenium',
:jar_name => 'Xselenium-server-standalone-2.37.0.jar',
:jar_name => 'Xselenium-server-standalone-x.xx.x.jar',
:options => 'X-Dwebdriver.enable.native.events=1',
:java => 'Xjava',
}
Expand All @@ -80,7 +80,7 @@
:display => 'X:0',
:user => 'Xselenium',
:install_root => 'X/opt/selenium',
:jar_name => 'Xselenium-server-standalone-2.37.0.jar',
:jar_name => 'Xselenium-server-standalone-x.xx.x.jar',
:options => 'X-Dwebdriver.enable.native.events=1',
:java => 'Xjava',
}
Expand Down

0 comments on commit 0b42040

Please sign in to comment.