automation_helpers 5.1.0 → 5.2.0
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,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 75259b6680a81c12797e7e149e8ddf63e4c5e0a53e9abce49209eb1872797eff
|
4
|
+
data.tar.gz: 733f42580acc3cb78d8a4106f492d07f5f9354247a63eb05261be7ae5df1bf56
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1e756396a0eca7e1dfba394c511d8b2885fe4afa1244e51cef033019b4e920e24ebc64e3ad7469be499d887482a0e074ab910eb3f44b423ab6da9d0350ae318a
|
7
|
+
data.tar.gz: 6d325dc0137c51061c5ff0ff14e4394a6eec54603d00122fa1a153e7084e911e0908245eae8ee215f93be7558e9ed6563f9008e70d93efd5e9eeb8af27af73e4
|
@@ -11,6 +11,17 @@ module AutomationHelpers
|
|
11
11
|
|
12
12
|
def description
|
13
13
|
<<~DESCRIPTION
|
14
|
+
UPDATE: 3/12/2024
|
15
|
+
This patch should in theory be redundant now the root cause has been identified as a processing
|
16
|
+
debugger fault in RubyMine. Since Ruby 3.2 this should no longer be an issue providing you are
|
17
|
+
using an "up-to-date" RubyMine. I personally haven't encountered this issue for a couple of years
|
18
|
+
|
19
|
+
As such this patch is now considered a deprecated patch with a 1 year TTL, at which point we'll then
|
20
|
+
consider it for removal from the gem proper
|
21
|
+
|
22
|
+
~~~~~~~~~~~~~~~~~~~~~
|
23
|
+
|
24
|
+
ORIGINAL ISSUE:
|
14
25
|
When using the Selenium Logger that is set to pipe to a file, the Net::HTTP adapter (default),
|
15
26
|
can return unencoded binary (confusingly called ASCII-8BIT in Ruby).
|
16
27
|
Consequently we set the logger to binmode so it doesn't try to encode the data - this would always
|
@@ -20,6 +31,14 @@ module AutomationHelpers
|
|
20
31
|
DESCRIPTION
|
21
32
|
end
|
22
33
|
|
34
|
+
def deprecation_notice_date
|
35
|
+
Time.new(2025, 12, 3)
|
36
|
+
end
|
37
|
+
|
38
|
+
def prevent_usage_date
|
39
|
+
Time.new(2026, 12, 3)
|
40
|
+
end
|
41
|
+
|
23
42
|
def perform
|
24
43
|
::Selenium::WebDriver.logger.io.binmode
|
25
44
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: automation_helpers
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.
|
4
|
+
version: 5.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Luke Hill
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2024-12-
|
12
|
+
date: 2024-12-03 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: capybara
|