axe-core-rspec 4.3.2.pre.dc71aca → 4.3.2.pre.9952248
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/README.md +3 -3
 - metadata +2 -2
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 5575f38385e2b679090ef10f09720f9904b24545da46904ec17e59c00d82687d
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 6d298d453e0b555a052f1dd04b798690229e291a66f2df287902522ed99d091e
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 582c91c1e477e301a1310c478305f5f1f9de9f764c2f2acf8f3cac9c9f7ac03dada90798aff50a6a538e8cf93d4e54c56b56288430195c5ecfc608c45716cf2b
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: e47fbfa36e3774c869931ec49267f44c9fd31a6d08fd532436a341af977060decb4b953bab2dcb33e0ec41c6909306cdac5819fa805e4ffe2b3207f465a96b94
         
     | 
    
        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.3.2.pre. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 4.3.2.pre.9952248
         
     | 
| 
       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-02-08 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: dumb_delegator
         
     |