selenium-webdriver 2.53.1 → 2.53.2

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/CHANGES CHANGED
@@ -1,3 +1,9 @@
1
+ 2.53.2 (2016-06-13)
2
+ ===================
3
+
4
+ Ruby:
5
+ * Fix bug for finding binaries on Windows (issue 2271 & 2273)
6
+
1
7
  2.53.1 (2016-06-09)
2
8
  ===================
3
9
 
@@ -168,7 +168,9 @@ module Selenium
168
168
 
169
169
  binary_names.each do |binary_name|
170
170
  paths.each do |path|
171
- exe = Dir.glob(File.join(path, binary_name)).first
171
+ full_path = File.join(path, binary_name)
172
+ full_path.tr!('\\', '/') if windows?
173
+ exe = Dir.glob(full_path).first
172
174
  next unless exe
173
175
  return exe if File.executable?(exe)
174
176
  end
@@ -7,7 +7,7 @@ end
7
7
 
8
8
  Gem::Specification.new do |s|
9
9
  s.name = "selenium-webdriver"
10
- s.version = "2.53.1"
10
+ s.version = "2.53.2"
11
11
 
12
12
  s.authors = ["Jari Bakken"]
13
13
  s.email = "jari.bakken@gmail.com"
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: selenium-webdriver
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 2.53.1
5
+ version: 2.53.2
6
6
  platform: ruby
7
7
  authors:
8
8
  - Jari Bakken
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2016-06-09 00:00:00 -07:00
13
+ date: 2016-06-13 00:00:00 -07:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency