bloom_rubocop 0.1.0 → 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 +4 -4
- data/.rubocop.yml +23 -2
- data/.ruby-version +1 -1
- data/CHANGELOG.md +5 -1
- data/Gemfile +2 -0
- data/Gemfile.lock +18 -17
- data/README.md +1 -1
- data/bloom_rubocop.gemspec +1 -1
- data/lib/bloom_rubocop/version.rb +1 -1
- metadata +5 -6
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: fbca0013f769da53d026f170039d79dbc60500aec77d8c469e39eec4647d6108
         | 
| 4 | 
            +
              data.tar.gz: '0584f5e7058f7b3c47f0bbd78a0943e99cf80e66c33e1d5e7c38424474af76c7'
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 45b0c5218ef5bdef5686db5a9c381df12d6761a31e7440590af1d9563173bee67275e92044008e4e6b4f8b9cdd8e0eb50e2e1f566da612cfa7fa3bc4c1a9137a
         | 
| 7 | 
            +
              data.tar.gz: 22292cfa7d382943579423c1883b77ecd3e507a553a4f1a5f31b9018843a9977a0da76613412e09cc47441eb4605966d697c9e482773e1e70ab3eee9950db605
         | 
    
        data/.rubocop.yml
    CHANGED
    
    | @@ -42,9 +42,9 @@ Style/LambdaCall: | |
| 42 42 | 
             
              Enabled: false
         | 
| 43 43 |  | 
| 44 44 | 
             
            # Bloom: hashes/arrays look more readable if indented on the same as the hash literal
         | 
| 45 | 
            -
            Layout/ | 
| 45 | 
            +
            Layout/IndentFirstHashElement:
         | 
| 46 46 | 
             
              EnforcedStyle: consistent
         | 
| 47 | 
            -
            Layout/ | 
| 47 | 
            +
            Layout/IndentFirstArrayElement:
         | 
| 48 48 | 
             
              EnforcedStyle: consistent
         | 
| 49 49 |  | 
| 50 50 | 
             
            Lint/UnusedMethodArgument:
         | 
| @@ -192,3 +192,24 @@ Naming/BinaryOperatorParameterName: | |
| 192 192 | 
             
            # also they'll fail CI anyway
         | 
| 193 193 | 
             
            Lint/Debugger:
         | 
| 194 194 | 
             
              Enabled: false
         | 
| 195 | 
            +
             | 
| 196 | 
            +
             | 
| 197 | 
            +
            # The following cops are added between 0.58.2 and 0.74.0.
         | 
| 198 | 
            +
            # The configurations are default.
         | 
| 199 | 
            +
            # If you want to use a cop by default, remove a configuration for the cop from here.
         | 
| 200 | 
            +
            # If you want to disable a cop, change `Enabled` to false.
         | 
| 201 | 
            +
             | 
| 202 | 
            +
            Bundler/GemComment:
         | 
| 203 | 
            +
              Description: Add a comment describing each gem.
         | 
| 204 | 
            +
              Enabled: false
         | 
| 205 | 
            +
              VersionAdded: '0.59'
         | 
| 206 | 
            +
              Include:
         | 
| 207 | 
            +
              - "**/*.gemfile"
         | 
| 208 | 
            +
              - "**/Gemfile"
         | 
| 209 | 
            +
              - "**/gems.rb"
         | 
| 210 | 
            +
              Whitelist: []
         | 
| 211 | 
            +
             | 
| 212 | 
            +
            Style/MultilineMethodSignature:
         | 
| 213 | 
            +
              Description: Avoid multi-line method signatures.
         | 
| 214 | 
            +
              Enabled: false
         | 
| 215 | 
            +
              VersionAdded: '0.59'
         | 
    
        data/.ruby-version
    CHANGED
    
    | @@ -1 +1 @@ | |
| 1 | 
            -
            2. | 
| 1 | 
            +
            2.6.3
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    | @@ -4,8 +4,12 @@ All notable changes to this project will be documented in this file. | |
| 4 4 | 
             
            The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
         | 
| 5 5 | 
             
            and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
         | 
| 6 6 |  | 
| 7 | 
            -
            ## [0. | 
| 7 | 
            +
            ## [0.2.0] - 09/04/2019
         | 
| 8 | 
            +
            ### Changed
         | 
| 9 | 
            +
            - Updated to ruby-version 2.6.3
         | 
| 10 | 
            +
            - Updated rubocop to 0.74.0 to support ruby 2.6
         | 
| 8 11 |  | 
| 12 | 
            +
            ## [0.1.0]
         | 
| 9 13 | 
             
            ### Added
         | 
| 10 14 | 
             
            - Initial commit
         | 
| 11 15 |  | 
    
        data/Gemfile
    CHANGED
    
    
    
        data/Gemfile.lock
    CHANGED
    
    | @@ -1,44 +1,44 @@ | |
| 1 1 | 
             
            PATH
         | 
| 2 2 | 
             
              remote: .
         | 
| 3 3 | 
             
              specs:
         | 
| 4 | 
            -
                bloom_rubocop (0. | 
| 5 | 
            -
                  rubocop (= 0. | 
| 4 | 
            +
                bloom_rubocop (0.2.0)
         | 
| 5 | 
            +
                  rubocop (= 0.74.0)
         | 
| 6 6 |  | 
| 7 7 | 
             
            GEM
         | 
| 8 8 | 
             
              remote: https://rubygems.org/
         | 
| 9 9 | 
             
              specs:
         | 
| 10 10 | 
             
                ast (2.4.0)
         | 
| 11 11 | 
             
                diff-lcs (1.3)
         | 
| 12 | 
            -
                jaro_winkler (1.5. | 
| 13 | 
            -
                 | 
| 14 | 
            -
             | 
| 12 | 
            +
                jaro_winkler (1.5.3)
         | 
| 13 | 
            +
                mry (0.59.0.0)
         | 
| 14 | 
            +
                  rubocop (>= 0.41.0)
         | 
| 15 | 
            +
                parallel (1.17.0)
         | 
| 16 | 
            +
                parser (2.6.4.0)
         | 
| 15 17 | 
             
                  ast (~> 2.4.0)
         | 
| 16 | 
            -
                powerpack (0.1.2)
         | 
| 17 18 | 
             
                rainbow (3.0.0)
         | 
| 18 19 | 
             
                rake (10.5.0)
         | 
| 19 20 | 
             
                rspec (3.8.0)
         | 
| 20 21 | 
             
                  rspec-core (~> 3.8.0)
         | 
| 21 22 | 
             
                  rspec-expectations (~> 3.8.0)
         | 
| 22 23 | 
             
                  rspec-mocks (~> 3.8.0)
         | 
| 23 | 
            -
                rspec-core (3.8. | 
| 24 | 
            +
                rspec-core (3.8.2)
         | 
| 24 25 | 
             
                  rspec-support (~> 3.8.0)
         | 
| 25 | 
            -
                rspec-expectations (3.8. | 
| 26 | 
            +
                rspec-expectations (3.8.4)
         | 
| 26 27 | 
             
                  diff-lcs (>= 1.2.0, < 2.0)
         | 
| 27 28 | 
             
                  rspec-support (~> 3.8.0)
         | 
| 28 | 
            -
                rspec-mocks (3.8. | 
| 29 | 
            +
                rspec-mocks (3.8.1)
         | 
| 29 30 | 
             
                  diff-lcs (>= 1.2.0, < 2.0)
         | 
| 30 31 | 
             
                  rspec-support (~> 3.8.0)
         | 
| 31 | 
            -
                rspec-support (3.8. | 
| 32 | 
            -
                rubocop (0. | 
| 32 | 
            +
                rspec-support (3.8.2)
         | 
| 33 | 
            +
                rubocop (0.74.0)
         | 
| 33 34 | 
             
                  jaro_winkler (~> 1.5.1)
         | 
| 34 35 | 
             
                  parallel (~> 1.10)
         | 
| 35 | 
            -
                  parser (>= 2. | 
| 36 | 
            -
                  powerpack (~> 0.1)
         | 
| 36 | 
            +
                  parser (>= 2.6)
         | 
| 37 37 | 
             
                  rainbow (>= 2.2.2, < 4.0)
         | 
| 38 38 | 
             
                  ruby-progressbar (~> 1.7)
         | 
| 39 | 
            -
                  unicode-display_width ( | 
| 40 | 
            -
                ruby-progressbar (1.10. | 
| 41 | 
            -
                unicode-display_width (1. | 
| 39 | 
            +
                  unicode-display_width (>= 1.4.0, < 1.7)
         | 
| 40 | 
            +
                ruby-progressbar (1.10.1)
         | 
| 41 | 
            +
                unicode-display_width (1.6.0)
         | 
| 42 42 |  | 
| 43 43 | 
             
            PLATFORMS
         | 
| 44 44 | 
             
              ruby
         | 
| @@ -46,8 +46,9 @@ PLATFORMS | |
| 46 46 | 
             
            DEPENDENCIES
         | 
| 47 47 | 
             
              bloom_rubocop!
         | 
| 48 48 | 
             
              bundler (~> 1.16)
         | 
| 49 | 
            +
              mry
         | 
| 49 50 | 
             
              rake (~> 10.0)
         | 
| 50 51 | 
             
              rspec (~> 3.0)
         | 
| 51 52 |  | 
| 52 53 | 
             
            BUNDLED WITH
         | 
| 53 | 
            -
               1. | 
| 54 | 
            +
               1.17.2
         | 
    
        data/README.md
    CHANGED
    
    
    
        data/bloom_rubocop.gemspec
    CHANGED
    
    | @@ -22,7 +22,7 @@ Gem::Specification.new do |spec| | |
| 22 22 | 
             
              spec.executables   = spec.files.grep(%r{^exe/}) {|f| File.basename(f) }
         | 
| 23 23 | 
             
              spec.require_paths = ["lib"]
         | 
| 24 24 |  | 
| 25 | 
            -
              spec.add_dependency "rubocop", "0. | 
| 25 | 
            +
              spec.add_dependency "rubocop", "0.74.0"
         | 
| 26 26 |  | 
| 27 27 | 
             
              spec.add_development_dependency "bundler", "~> 1.16"
         | 
| 28 28 | 
             
              spec.add_development_dependency "rake", "~> 10.0"
         | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: bloom_rubocop
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0. | 
| 4 | 
            +
              version: 0.2.0
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Ace Subido
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: exe
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date:  | 
| 11 | 
            +
            date: 2019-09-04 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: rubocop
         | 
| @@ -16,14 +16,14 @@ dependencies: | |
| 16 16 | 
             
                requirements:
         | 
| 17 17 | 
             
                - - '='
         | 
| 18 18 | 
             
                  - !ruby/object:Gem::Version
         | 
| 19 | 
            -
                    version: 0. | 
| 19 | 
            +
                    version: 0.74.0
         | 
| 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: 0. | 
| 26 | 
            +
                    version: 0.74.0
         | 
| 27 27 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 28 28 | 
             
              name: bundler
         | 
| 29 29 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| @@ -108,8 +108,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement | |
| 108 108 | 
             
                - !ruby/object:Gem::Version
         | 
| 109 109 | 
             
                  version: '0'
         | 
| 110 110 | 
             
            requirements: []
         | 
| 111 | 
            -
             | 
| 112 | 
            -
            rubygems_version: 2.7.6
         | 
| 111 | 
            +
            rubygems_version: 3.0.3
         | 
| 113 112 | 
             
            signing_key: 
         | 
| 114 113 | 
             
            specification_version: 4
         | 
| 115 114 | 
             
            summary: Bloom's Rubocop Configuration
         |