axe-core-rspec 4.3.2 → 4.4.0.pre.cce52e5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -3
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 600bcc21594881c4195dfef18d8033276718872b356214a53e14dc0b3eaa3158
|
4
|
+
data.tar.gz: d4bc7a7fe92ca00856776cd53ebad59efbbdd673420a3332f294fe9a308a51ab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 02d693792b63c2b14aa3a3d0a98073ed2864d06497b254291ab15735838e1f36d464b2204aef080b6d7ab8ffba841d8f8a9a8894a27f5347cddd0797ac95bb85
|
7
|
+
data.tar.gz: 78f521716118bdf67c6ffaa051a84a3683a7808d16bb5e6022b47e455f2123a850325d340e0e714435371cbecef6b3f64e3bccf684e48f596ed82d3341fde17f
|
data/README.md
CHANGED
@@ -189,11 +189,11 @@ All of the described clauses may be mixed and matched with method chaining. Belo
|
|
189
189
|
```rb
|
190
190
|
expect(page).to be_axe_clean.within('.main', '.header').excluding('.footer')
|
191
191
|
|
192
|
-
expect(page).to be_axe_clean.excluding('#sidebar').according_to(:wcag2a, :wcag2aa).skipping(
|
192
|
+
expect(page).to be_axe_clean.excluding('#sidebar').according_to(:wcag2a, :wcag2aa).skipping('color-contrast')
|
193
193
|
|
194
|
-
expect(page).to be_axe_clean.within('.main').checking_only
|
194
|
+
expect(page).to be_axe_clean.within('.main').checking_only 'document-title', :label
|
195
195
|
|
196
|
-
expect(page).to be_axe_clean.according_to(:best-practice).checking(:aria-roles,
|
196
|
+
expect(page).to be_axe_clean.according_to(:best-practice).checking(:aria-roles, 'definition-list')
|
197
197
|
```
|
198
198
|
|
199
199
|
[context-param]: https://github.com/dequelabs/axe-core/blob/master/doc/API.md#context-parameter
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: axe-core-rspec
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.
|
4
|
+
version: 4.4.0.pre.cce52e5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Deque Systems
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-09-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: dumb_delegator
|
@@ -135,11 +135,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
135
135
|
version: 2.3.0
|
136
136
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
137
137
|
requirements:
|
138
|
-
- - "
|
138
|
+
- - ">"
|
139
139
|
- !ruby/object:Gem::Version
|
140
|
-
version:
|
140
|
+
version: 1.3.1
|
141
141
|
requirements: []
|
142
|
-
rubygems_version: 3.
|
142
|
+
rubygems_version: 3.2.32
|
143
143
|
signing_key:
|
144
144
|
specification_version: 4
|
145
145
|
summary: RSpec custom matchers for Axe
|