webdrivers 4.4.0 → 4.4.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7f905a3a4839d0f0a56317926d560cab4ee29f98b3d36d4feb1bb671e3f1b23b
4
- data.tar.gz: 44ae96f9ba7edfbb2fb1bd1fd7ef319e73643f5a43c0fce59c51e2b94c1a25c8
3
+ metadata.gz: 478610897cf82cc6520b2501b70eddfc75a6cb000d95ec8a451acff865956913
4
+ data.tar.gz: ff8db96ce6a0c80df2e12354ace821f755272b385b76b0fa8f60819312132e53
5
5
  SHA512:
6
- metadata.gz: 73d60000abc1ad06f692ee556bca7bd57403cde91f2152b5349fda2b0feaa2afb261dd87b1e16f6f8c74e843634b8dbde3da85ed666164920e78163fed764029
7
- data.tar.gz: 1c94fde9cafdb1929a3e70ada28c7dfec07cbae6f68220e247ffe62343700c5b3ca2c0556d1d028d4d25b0f6bbd76923c402f1925574ec6f117eb8c4066e6255
6
+ metadata.gz: f56a8c5f61d30f1beccf5a2094f32069fe6b7c5ace48b3f626f53ea67da172113e6324c3616337637843cdab103c9c7b3a87d15982943444cf596c79194dc977
7
+ data.tar.gz: d461bec3bfaa089881e002f63c10e939cbcdfbc6edace671eb3a4bcfecc82f34298dc60d76a22363d48d3cf6f547e124f140fcbfc158e9e14eae6b3743f3e443
@@ -16,6 +16,30 @@ Layout/LineLength:
16
16
  IgnoredPatterns:
17
17
  - '\s+# rubocop:disable'
18
18
 
19
+ Layout/EmptyLinesAroundAttributeAccessor:
20
+ Enabled: true
21
+
22
+ Layout/SpaceAroundOperators:
23
+ Enabled: true
24
+
25
+ Layout/SpaceAroundMethodCallOperator:
26
+ Enabled: true
27
+
28
+ Lint/DeprecatedOpenSSLConstant:
29
+ Enabled: true
30
+
31
+ Lint/RaiseException:
32
+ Enabled: true
33
+
34
+ Lint/StructNewOverride:
35
+ Enabled: true
36
+
37
+ Lint/MixedRegexpCaptureTypes:
38
+ Enabled: true
39
+
40
+ Lint/ScriptPermission:
41
+ Enabled: false
42
+
19
43
  Metrics/MethodLength:
20
44
  Max: 20
21
45
 
@@ -41,6 +65,30 @@ Metrics/AbcSize:
41
65
  Style/Documentation:
42
66
  Enabled: false
43
67
 
68
+ Style/FrozenStringLiteralComment:
69
+ Enabled: false
70
+
71
+ Style/ExponentialNotation:
72
+ Enabled: false
73
+
74
+ Style/HashEachMethods:
75
+ Enabled: true
76
+
77
+ Style/HashTransformKeys:
78
+ Enabled: false
79
+
80
+ Style/HashTransformValues:
81
+ Enabled: false
82
+
83
+ Style/SlicingWithRange:
84
+ Enabled: false
85
+
86
+ Style/RedundantRegexpCharacterClass:
87
+ Enabled: true
88
+
89
+ Style/RedundantRegexpEscape:
90
+ Enabled: false
91
+
44
92
  RSpec/ExampleLength:
45
93
  Enabled: false
46
94
 
@@ -1,5 +1,8 @@
1
+ ### 4.4.1 (2020-06-01)
2
+ * Do not include binstubs used for troubleshooting only. Fixes [#174](https://github.com/titusfortner/webdrivers/issues/174).
3
+
1
4
  ### 4.4.0 (2020-05-31)
2
- * Implement initial support for WSLv1 ([#172](https://github.com/titusfortner/webdrivers/issues/172)). Thanks G-Rath!
5
+ * Implement support for `chromedriver` in Windows Subsystem for Linux (WSL) v1 ([#172](https://github.com/titusfortner/webdrivers/issues/172)). Thanks G-Rath!
3
6
  * Chrome/Edgedriver - Fix [#171](https://github.com/titusfortner/webdrivers/issues/171) by making sure the cached
4
7
  driver build version matches the browser build version before using it.
5
8
  * Chrome/Edgedriver - Driver version check now matches the driver and browser `major.minor.build` versions instead of just
@@ -1,23 +1,23 @@
1
- (The MIT License)
2
-
3
- Copyright (c) 2017-2019: Titus Fortner
4
- Copyright (c) 2019: Lakshya Kapoor, Thomas Walpole
5
-
6
- Permission is hereby granted, free of charge, to any person obtaining
7
- a copy of this software and associated documentation files (the
8
- 'Software'), to deal in the Software without restriction, including
9
- without limitation the rights to use, copy, modify, merge, publish,
10
- distribute, sublicense, and/or sell copies of the Software, and to
11
- permit persons to whom the Software is furnished to do so, subject to
12
- the following conditions:
13
-
14
- The above copyright notice and this permission notice shall be
15
- included in all copies or substantial portions of the Software.
16
-
17
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
18
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
21
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
22
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
23
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1
+ (The MIT License)
2
+
3
+ Copyright (c) 2017-2019: Titus Fortner
4
+ Copyright (c) 2019: Lakshya Kapoor, Thomas Walpole
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining
7
+ a copy of this software and associated documentation files (the
8
+ 'Software'), to deal in the Software without restriction, including
9
+ without limitation the rights to use, copy, modify, merge, publish,
10
+ distribute, sublicense, and/or sell copies of the Software, and to
11
+ permit persons to whom the Software is furnished to do so, subject to
12
+ the following conditions:
13
+
14
+ The above copyright notice and this permission notice shall be
15
+ included in all copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
18
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
21
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
22
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
23
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md CHANGED
@@ -15,6 +15,8 @@ Run Selenium tests more easily with automatic installation and updates for all s
15
15
  * [IEDriverServer](https://github.com/SeleniumHQ/selenium/wiki/InternetExplorerDriver)
16
16
  * [msedgedriver](https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/)
17
17
 
18
+ Works on macOS, Linux, Windows, and Windows Subsystem for Linux (WSL) v1.
19
+
18
20
  ## Usage
19
21
 
20
22
  In your Gemfile:
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Webdrivers
4
- VERSION = '4.4.0'
4
+ VERSION = '4.4.1'
5
5
  end
@@ -24,7 +24,7 @@ Gem::Specification.new do |s|
24
24
 
25
25
  s.files = `git ls-files`.split("\n")
26
26
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
27
- s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
27
+ s.executables = []
28
28
  s.require_paths = ['lib']
29
29
 
30
30
  s.add_development_dependency 'ffi', '~> 1.0' # For selenium-webdriver on Windows
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: webdrivers
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.4.0
4
+ version: 4.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Titus Fortner
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2020-06-01 00:00:00.000000000 Z
13
+ date: 2020-06-02 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: ffi
@@ -163,9 +163,7 @@ description: Run Selenium tests more easily with install and updates for all sup
163
163
  email:
164
164
  - titusfortner@gmail.com
165
165
  - kapoorlakshya@gmail.com
166
- executables:
167
- - console
168
- - setup
166
+ executables: []
169
167
  extensions: []
170
168
  extra_rdoc_files: []
171
169
  files:
@@ -219,8 +217,8 @@ licenses:
219
217
  metadata:
220
218
  bug_tracker_uri: https://github.com/titusfortner/webdrivers/issues
221
219
  changelog_uri: https://github.com/titusfortner/webdrivers/blob/master/CHANGELOG.md
222
- documentation_uri: https://www.rubydoc.info/gems/webdrivers/4.4.0
223
- source_code_uri: https://github.com/titusfortner/webdrivers/tree/v4.4.0
220
+ documentation_uri: https://www.rubydoc.info/gems/webdrivers/4.4.1
221
+ source_code_uri: https://github.com/titusfortner/webdrivers/tree/v4.4.1
224
222
  post_install_message:
225
223
  rdoc_options: []
226
224
  require_paths:
@@ -236,7 +234,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
236
234
  - !ruby/object:Gem::Version
237
235
  version: '0'
238
236
  requirements: []
239
- rubygems_version: 3.1.3
237
+ rubygems_version: 3.1.2
240
238
  signing_key:
241
239
  specification_version: 4
242
240
  summary: Easy download and use of browser drivers.