art-rubocop 1.0.9 → 1.1.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 +4 -4
- data/.gitignore +1 -0
- data/Gemfile.lock +7 -7
- data/README.md +2 -2
- data/art-rubocop.gemspec +1 -1
- data/default.yml +308 -309
- metadata +3 -2
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: b66c848cff9eef8b30354fd565db9f3f326fc962f98561a33f3e23cbfb414bdb
         | 
| 4 | 
            +
              data.tar.gz: 6a108c116b0454cba4c82ddee8d986e05c4101437d3ec253449d2625e7bb95e0
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 67680fde1523d3473d317cea5394674ca9145ce5ddd63701be4e394736b3f187cdd9ddfb4c48ce6460631e04fe7caa63708210f22d8f15e8cf859101b1b1216b
         | 
| 7 | 
            +
              data.tar.gz: 67435d3188283d9eec9f64fa5b0339dee15bd6ec2044a293150ca33137394e56e1a1abbe64ba636ecf2584d9af5249357564372f48f6804820a2276fd19a6b84
         | 
    
        data/.gitignore
    ADDED
    
    | @@ -0,0 +1 @@ | |
| 1 | 
            +
            pkg/
         | 
    
        data/Gemfile.lock
    CHANGED
    
    | @@ -20,31 +20,31 @@ GEM | |
| 20 20 | 
             
                i18n (1.12.0)
         | 
| 21 21 | 
             
                  concurrent-ruby (~> 1.0)
         | 
| 22 22 | 
             
                json (2.6.3)
         | 
| 23 | 
            -
                minitest (5. | 
| 23 | 
            +
                minitest (5.17.0)
         | 
| 24 24 | 
             
                parallel (1.22.1)
         | 
| 25 25 | 
             
                parser (3.1.3.0)
         | 
| 26 26 | 
             
                  ast (~> 2.4.1)
         | 
| 27 | 
            -
                rack (3.0. | 
| 27 | 
            +
                rack (3.0.3)
         | 
| 28 28 | 
             
                rainbow (3.1.1)
         | 
| 29 29 | 
             
                rake (13.0.6)
         | 
| 30 30 | 
             
                regexp_parser (2.6.1)
         | 
| 31 31 | 
             
                rexml (3.2.5)
         | 
| 32 | 
            -
                rubocop (1. | 
| 32 | 
            +
                rubocop (1.42.0)
         | 
| 33 33 | 
             
                  json (~> 2.3)
         | 
| 34 34 | 
             
                  parallel (~> 1.10)
         | 
| 35 35 | 
             
                  parser (>= 3.1.2.1)
         | 
| 36 36 | 
             
                  rainbow (>= 2.2.2, < 4.0)
         | 
| 37 37 | 
             
                  regexp_parser (>= 1.8, < 3.0)
         | 
| 38 38 | 
             
                  rexml (>= 3.2.5, < 4.0)
         | 
| 39 | 
            -
                  rubocop-ast (>= 1. | 
| 39 | 
            +
                  rubocop-ast (>= 1.24.1, < 2.0)
         | 
| 40 40 | 
             
                  ruby-progressbar (~> 1.7)
         | 
| 41 41 | 
             
                  unicode-display_width (>= 1.4.0, < 3.0)
         | 
| 42 | 
            -
                rubocop-ast (1.24. | 
| 42 | 
            +
                rubocop-ast (1.24.1)
         | 
| 43 43 | 
             
                  parser (>= 3.1.1.0)
         | 
| 44 | 
            -
                rubocop-performance (1.15. | 
| 44 | 
            +
                rubocop-performance (1.15.2)
         | 
| 45 45 | 
             
                  rubocop (>= 1.7.0, < 2.0)
         | 
| 46 46 | 
             
                  rubocop-ast (>= 0.4.0)
         | 
| 47 | 
            -
                rubocop-rails (2.17. | 
| 47 | 
            +
                rubocop-rails (2.17.4)
         | 
| 48 48 | 
             
                  activesupport (>= 4.2.0)
         | 
| 49 49 | 
             
                  rack (>= 1.1)
         | 
| 50 50 | 
             
                  rubocop (>= 1.33.0, < 2.0)
         | 
    
        data/README.md
    CHANGED
    
    | @@ -2,7 +2,7 @@ | |
| 2 2 |  | 
| 3 3 | 
             
            ## Installation
         | 
| 4 4 |  | 
| 5 | 
            -
            Currently targets Ruby  | 
| 5 | 
            +
            Currently targets Ruby 3.1
         | 
| 6 6 |  | 
| 7 7 | 
             
            Add this line to your app's Gemfile (You do not need to add `rubocop` as a dependency in your Gemfile):
         | 
| 8 8 |  | 
| @@ -54,7 +54,7 @@ $ bundle exec rubocop | |
| 54 54 | 
             
            $ gem build art-rubocop.gemspec
         | 
| 55 55 | 
             
            ```
         | 
| 56 56 |  | 
| 57 | 
            -
            3.  | 
| 57 | 
            +
            3. gem push pkg/art-rubocop-<version>.gem
         | 
| 58 58 |  | 
| 59 59 | 
             
            ## Wiki
         | 
| 60 60 |  | 
    
        data/art-rubocop.gemspec
    CHANGED
    
    | @@ -2,7 +2,7 @@ | |
| 2 2 |  | 
| 3 3 | 
             
            Gem::Specification.new do |spec|
         | 
| 4 4 | 
             
              spec.name          = "art-rubocop"
         | 
| 5 | 
            -
              spec.version       = "1.0 | 
| 5 | 
            +
              spec.version       = "1.1.0"
         | 
| 6 6 | 
             
              spec.authors       = ["Growth Engineering"]
         | 
| 7 7 | 
             
              spec.email         = ["devinrm@articulate.com"]
         | 
| 8 8 | 
             
              spec.summary       = "Rubocop style guide for Articulate Growth Engineering"
         |