webdriver-firefox 0.0.10 → 0.0.12

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
- ZjQyNDM1ZWFjZTZmODNjNWMwNTdlZDkyZWNmNzlkMWQ2MGUxMDUxZQ==
4
+ OTQwZWI4NGE4ZjA5YzM4ODMwNzU1N2YxYjZkOWI2OTg5NTM5ZWEyMw==
5
5
  data.tar.gz: !binary |-
6
- NzMwNDgwZTBiYTJhNTkzMDc5N2FiY2MyNzhlYWVlN2MxNTJkNWJhZQ==
6
+ ZjhjODZhMzEzZTBmMTY3Y2VlY2EwNDhlNjFhOGMwMzFkODg2NzY0Ng==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- NjlmOWZjMTBjNmU0NGZmYzFlMzhjMDFkMTYwZmQxZWExNGY3Y2UzOGNhMTIz
10
- ZDRjN2E4OGMyZWEwZGYwYzY0ZDhkOWFkZGM5ZmRlNzdiM2Y1MDMxMjA3YmZj
11
- YTNjNTQ5ODVhYzVlZDFiZjlkZWY4ZDBhMDZlYzg3NTJiZWFhYmM=
9
+ YzNkMDkzNWRiYzdmNDRjZWU5NTJkMWZhMDZmMmIyN2U0YTY0NmNhNGYyMjJi
10
+ Zjc2M2IyYWUxYWJiYWY0OTIzN2RiMTE2NTc1YTJlOTZjYTg2NjYyMmJmYWQ3
11
+ Y2U2NWZmNzkzNjgzODAzNDAyMDhkZjJlOTVlYzUzOGJmNmYzYzU=
12
12
  data.tar.gz: !binary |-
13
- OGFkNTIwOTg0NDZjNTkwZjA2ODIxNDY4NmQ2YzQ4NDA0MWE4YWVjNTQ1Mzc3
14
- ODY0ZGI4YTVhMWFjYjg0ZDg2ZDI2ZDAzNjNhNDUxMTliNjQzMDQwOTUyMDU2
15
- Yjk3MzZkMTUzZjM5MzUxMzAzMDQ4YzE5NmIwY2QxMjA0YzFjODc=
13
+ OWQ1NzM0MGQxOGI1N2MwY2FkYTE5M2ZhNmFmMGUyZjFiOTQ0MjhlZGFhN2E1
14
+ ODdiY2UwNWQxMmRhZTY2Mjg4YTEyZDAzOGQ0MjZlZTVhMjQ1NzQ1OTI0ZWE2
15
+ MGYxNTI1MWI2NjMzNWZlNDI0Yzk1MjUyM2Y3YmVkYWVlMWE0NmQ=
@@ -1,5 +1,6 @@
1
1
  # Copyright (c) 2013 Solano Labs All Rights Reserved
2
2
 
3
+ require 'rand'
3
4
  require 'socket'
4
5
 
5
6
  module NoLockFirefox
@@ -8,7 +9,11 @@ module NoLockFirefox
8
9
  START_PORT = 24576
9
10
 
10
11
  def initialize
11
- @random = ::Random.new
12
+ begin
13
+ @random = ::Random.new
14
+ rescue
15
+ @random = nil
16
+ end
12
17
  end
13
18
 
14
19
  def find_free_port
@@ -17,7 +22,11 @@ module NoLockFirefox
17
22
  tid = ENV.fetch('TDDIUM_TID', 0).to_i
18
23
 
19
24
  range = 256*tid
20
- index = @random.rand(256)
25
+ if @random then
26
+ index = @random.rand(256)
27
+ else
28
+ index = rand(256)
29
+ end
21
30
  limit = START_PORT+256*(tid+1)
22
31
 
23
32
  timeout = Time.now+90
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2013 Solano Labs All Rights Reserved
2
2
 
3
3
  module WebdriverFirefox
4
- VERSION = '0.0.10'
4
+ VERSION = '0.0.12'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: webdriver-firefox
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.10
4
+ version: 0.0.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Solano Labs