rails_accessibility_testing 1.1.3 → 1.1.4
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: d58abecc3e5e128753499732dea24b016875593af005f776a9e94002f5d779e9
|
|
4
|
+
data.tar.gz: 51f98255eb1ae6042b55310532c59adfb9ebaeedb5a9415d4e1be652986df1c7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4d554890949ccc6009accdcac4f6740e43237192f075fee2345b8468edab548a32da307577967409922fe2275361bbf19ef89de51f3fc0bd89dbf3f09c9747d3
|
|
7
|
+
data.tar.gz: 6be04fb755999ece4ab602dbfe014257f61243542f3c36ffea3dd0984fd58f5d425a8f94d7d4fdc97664b275502c6a0c6220aae032db07c3e683e4888c49c79d
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.1.4] - 2024-12-XX
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- Fixed CLI tool chromedriver discovery issue by automatically requiring webdrivers gem when available
|
|
12
|
+
- CLI tool now works properly with projects that use webdrivers for driver management
|
|
13
|
+
|
|
8
14
|
## [1.1.3] - 2024-12-XX
|
|
9
15
|
|
|
10
16
|
### Fixed
|
|
@@ -82,6 +88,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
82
88
|
- Compatible with RSpec Rails 6.0+
|
|
83
89
|
- Modular architecture with rule engine and check definitions
|
|
84
90
|
|
|
91
|
+
[1.1.4]: https://github.com/rayraycodes/rails-accessibility-testing/releases/tag/v1.1.4
|
|
85
92
|
[1.1.3]: https://github.com/rayraycodes/rails-accessibility-testing/releases/tag/v1.1.3
|
|
86
93
|
[1.1.0]: https://github.com/rayraycodes/rails-accessibility-testing/releases/tag/v1.1.0
|
|
87
94
|
[1.0.0]: https://github.com/rayraycodes/rails-accessibility-testing/releases/tag/v1.0.0
|
|
@@ -110,6 +110,13 @@ module RailsAccessibilityTesting
|
|
|
110
110
|
require 'capybara/dsl'
|
|
111
111
|
require 'selenium-webdriver'
|
|
112
112
|
|
|
113
|
+
# Try to require webdrivers for automatic chromedriver management
|
|
114
|
+
begin
|
|
115
|
+
require 'webdrivers'
|
|
116
|
+
rescue LoadError
|
|
117
|
+
# webdrivers gem not available, selenium-webdriver will try to manage drivers
|
|
118
|
+
end
|
|
119
|
+
|
|
113
120
|
# Setup Capybara
|
|
114
121
|
Capybara.default_driver = :selenium_chrome_headless
|
|
115
122
|
Capybara.app = Rails.application if defined?(Rails)
|