capybara_accessibility_audit 0.1.1 → 0.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: 6f3c291518b387bd0ebb540dd63aa42e7ff1740741ca5dbf1a25cc4be69cbcfc
|
|
4
|
+
data.tar.gz: bf7184f0a2ac3b7014665cb58bb9bed8d5d8ef180974b78e4d852d2759cec221
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7f6975cda1ae0f1465159dc662a171b1236eda9d8e3afaa605ce4dee7ee49cb29ed806f40b01c4394a9c37257ae689c825669371fc943aa3142d272f53c95eb2
|
|
7
|
+
data.tar.gz: 40cff319bee4767c4e1e12d37b074728d24d84dc9ab302ec481104a22c87f30dad4c851ee96aaecf170188d821d27a09e793dba4455a6495f45c1afe6416b200
|
data/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# CapybaraAccessibilityAudit
|
|
2
2
|
|
|
3
3
|
Extend your Capybara-powered System Tests to automatically audit the page for
|
|
4
|
-
WCAG
|
|
4
|
+
[WCAG Standards-based accessibility violations](https://www.w3.org/WAI/standards-guidelines/wcag/).
|
|
5
5
|
|
|
6
6
|
## Usage
|
|
7
7
|
|
|
@@ -62,7 +62,7 @@ end
|
|
|
62
62
|
|
|
63
63
|
## Frequently Asked Questions
|
|
64
64
|
|
|
65
|
-
My application already exists,
|
|
65
|
+
My application already exists, automated accessibility audits are uncovering violations left and right. Do I have to fix them all at once?
|
|
66
66
|
---
|
|
67
67
|
|
|
68
68
|
Your suite has control over which rules are skipped and which rules are
|
|
@@ -222,3 +222,21 @@ Please read [CONTRIBUTING.md](./CONTRIBUTING.md).
|
|
|
222
222
|
|
|
223
223
|
## License
|
|
224
224
|
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
|
225
|
+
|
|
226
|
+
<!-- START /templates/footer.md -->
|
|
227
|
+
## About thoughtbot
|
|
228
|
+
|
|
229
|
+

|
|
230
|
+
|
|
231
|
+
This repo is maintained and funded by thoughtbot, inc.
|
|
232
|
+
The names and logos for thoughtbot are trademarks of thoughtbot, inc.
|
|
233
|
+
|
|
234
|
+
We love open source software!
|
|
235
|
+
See [our other projects][community].
|
|
236
|
+
We are [available for hire][hire].
|
|
237
|
+
|
|
238
|
+
[community]: https://thoughtbot.com/community?utm_source=github
|
|
239
|
+
[hire]: https://thoughtbot.com/hire-us?utm_source=github
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
<!-- END /templates/footer.md -->
|
|
@@ -10,27 +10,33 @@ module CapybaraAccessibilityAudit
|
|
|
10
10
|
]
|
|
11
11
|
config.capybara_accessibility_audit.audit_enabled = true
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
initializer "capybara_accessibility_audit.minitest" do |app|
|
|
14
|
+
ActiveSupport.on_load :action_dispatch_system_test_case do
|
|
15
|
+
include CapybaraAccessibilityAudit::AuditSystemTestExtensions
|
|
15
16
|
|
|
16
|
-
|
|
17
|
+
self.accessibility_audit_enabled = app.config.capybara_accessibility_audit.audit_enabled
|
|
17
18
|
|
|
18
|
-
|
|
19
|
+
accessibility_audit_after app.config.capybara_accessibility_audit.audit_after
|
|
20
|
+
end
|
|
19
21
|
end
|
|
20
22
|
|
|
21
|
-
|
|
22
|
-
RSpec
|
|
23
|
-
|
|
24
|
-
config.include CapybaraAccessibilityAudit::AuditSystemTestExtensions, type: :feature
|
|
23
|
+
initializer "capybara_accessibility_audit.rspec" do |app|
|
|
24
|
+
if defined?(RSpec)
|
|
25
|
+
require "rspec/core"
|
|
25
26
|
|
|
26
|
-
configure
|
|
27
|
-
|
|
27
|
+
RSpec.configure do |config|
|
|
28
|
+
config.include CapybaraAccessibilityAudit::AuditSystemTestExtensions, type: :system
|
|
29
|
+
config.include CapybaraAccessibilityAudit::AuditSystemTestExtensions, type: :feature
|
|
28
30
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
+
configure = proc do
|
|
32
|
+
self.accessibility_audit_enabled = app.config.capybara_accessibility_audit.audit_enabled
|
|
31
33
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
+
accessibility_audit_after app.config.capybara_accessibility_audit.audit_after
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
config.before(type: :system, &configure)
|
|
38
|
+
config.before(type: :feature, &configure)
|
|
39
|
+
end
|
|
34
40
|
end
|
|
35
41
|
end
|
|
36
42
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capybara_accessibility_audit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sean Doyle
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-04-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '
|
|
19
|
+
version: '6.1'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '
|
|
26
|
+
version: '6.1'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: capybara
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -39,7 +39,7 @@ dependencies:
|
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '0'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
|
-
name: axe-core-
|
|
42
|
+
name: axe-core-api
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
45
|
- - ">="
|
|
@@ -97,14 +97,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
97
97
|
requirements:
|
|
98
98
|
- - ">="
|
|
99
99
|
- !ruby/object:Gem::Version
|
|
100
|
-
version: '0'
|
|
100
|
+
version: '3.0'
|
|
101
101
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
102
102
|
requirements:
|
|
103
103
|
- - ">="
|
|
104
104
|
- !ruby/object:Gem::Version
|
|
105
105
|
version: '0'
|
|
106
106
|
requirements: []
|
|
107
|
-
rubygems_version: 3.4.
|
|
107
|
+
rubygems_version: 3.4.1
|
|
108
108
|
signing_key:
|
|
109
109
|
specification_version: 4
|
|
110
110
|
summary: Accessibility tooling for Capybara
|