capybara-rack_test-screenshot 0.1.2 → 0.1.3
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 +4 -4
- data/CHANGELOG.md +6 -1
- data/lib/capybara/rack_test/screenshot/version.rb +1 -1
- data/lib/capybara/rack_test/screenshot.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2180a541a7a5e6fd8d95bb5f98ba8c2c25b791c9f426c95c9285c201f732b10b
|
4
|
+
data.tar.gz: '028a13a2fa806f8f290c4be60881c12a4a2c161dc5e069f39a01a16c2df7b4ad'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9f123074032980b7d06e43bd40daefadd57a0832a9d8bad929513bb2053e0dfff578b40e3c06baec549d61c31c4ebe24018f490856eaf5b54845ca62d89adf9a
|
7
|
+
data.tar.gz: 533889b483d8d3c52169a440a8f92b71e959bead4dbd7fbe59324d45f175d447fc417157f6054e22e695dc2784ab2d6e14da9d85f30c19fe00f087026e7a94d7
|
data/CHANGELOG.md
CHANGED
@@ -1,9 +1,14 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
|
-
## [0.1.
|
3
|
+
## [0.1.3] - 2025-08-07
|
4
4
|
|
5
|
+
- Fix regression in 0.1.3
|
5
6
|
- Make sure default playwright version is compatible with the Ruby client
|
6
7
|
|
8
|
+
## [0.1.2] - 2025-08-07
|
9
|
+
|
10
|
+
Yanked
|
11
|
+
|
7
12
|
## [0.1.1] - 2025-06-10
|
8
13
|
|
9
14
|
- Add compatibility with `capybara-screenshot` gem
|
@@ -68,7 +68,7 @@ module Capybara
|
|
68
68
|
|
69
69
|
def playwright_cli_executable_path
|
70
70
|
ENV['PLAYWRIGHT_CLI_EXE_PATH'] || begin
|
71
|
-
version = Gem::Version.create(Playwright::COMPATIBLE_PLAYWRIGHT_VERSION)
|
71
|
+
version = Gem::Version.create(::Playwright::COMPATIBLE_PLAYWRIGHT_VERSION)
|
72
72
|
"npx playwright@#{version.release}"
|
73
73
|
end
|
74
74
|
end
|