selenium-server 1.1.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile.lock +1 -1
- data/example.rb +1 -0
- data/lib/selenium-server/rake.task +1 -1
- data/lib/selenium-server/server.rb +1 -1
- data/selenium-server.gemspec +1 -1
- metadata +1 -1
data/Gemfile.lock
CHANGED
data/example.rb
CHANGED
@@ -25,7 +25,7 @@ module SeleniumServer
|
|
25
25
|
|
26
26
|
Selenium::Rake::ServerTask.new(:server) do |t|
|
27
27
|
#{"t.version = :latest" unless configuration.jar}
|
28
|
-
#{if configuration.jar then "t.jar = #{configuration.jar}" end}
|
28
|
+
#{if configuration.jar then "t.jar = '#{configuration.jar}'" end}
|
29
29
|
t.background
|
30
30
|
t.log = #{configuration.log ? configuration.log : "false"}
|
31
31
|
t.port = #{configuration.port ? configuration.port : "4444"}
|
data/selenium-server.gemspec
CHANGED