pivotal-selenium-rc 1.10.20090610 → 1.11.20090610

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.
Files changed (3) hide show
  1. data/VERSION.yml +1 -1
  2. data/lib/selenium_rc/server.rb +8 -2
  3. metadata +1 -1
data/VERSION.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  ---
2
- :minor: 10
2
+ :minor: 11
3
3
  :patch: 20090610
4
4
  :major: 1
5
5
  :jar_url: http://release.seleniumhq.org/selenium-remote-control/1.0.1/selenium-remote-control-1.0.1-dist.zip
@@ -44,8 +44,14 @@ module SeleniumRC
44
44
  command << " -port #{self.class.port}"
45
45
  command << " #{argv.join(' ')}" if argv.length > 0
46
46
  log "Running: #{command}"
47
- fork do
48
- system(command)
47
+ begin
48
+ fork do
49
+ system(command)
50
+ end
51
+ rescue NotImplementedError
52
+ Thread.start do
53
+ system(command)
54
+ end
49
55
  end
50
56
  end
51
57
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pivotal-selenium-rc
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.20090610
4
+ version: 1.11.20090610
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pivotal Labs