armitage-rubocop 0.82.0.1 → 0.85.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/armitage-rubocop.gemspec +3 -3
- data/lib/common/layout.yml +10 -1
- data/lib/common/lint.yml +17 -3
- data/lib/common/naming.yml +2 -0
- data/lib/common/performance.yml +9 -0
- data/lib/common/style.yml +12 -1
- metadata +6 -6
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 91749a541750dacdef58261bb3296b67996a172ae83f9dec0fd58fcb07d221a5
         | 
| 4 | 
            +
              data.tar.gz: 65584d9054bf9e11b01ca13ba5f8c11c0d8f139a001e9906f7f1fa49c7b27a45
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: d6fdf68ad7b80de4e2966326de6c9b0b2107597a6ce1f766123b2e26a070c71c429d05913d0621f3f6bfe72862c9ed3776cf0839f405e51e3f8964f5cc3981af
         | 
| 7 | 
            +
              data.tar.gz: afd4fbd1c1c3a8db627ea933e27ee737d8858388a72c2497c4a9d2d98711e3c599331f084853a7d399c5d46113d44b223bf7a41f50192ab18232cd37a8b69468
         | 
    
        data/armitage-rubocop.gemspec
    CHANGED
    
    | @@ -4,7 +4,7 @@ lib = File.expand_path('lib', __dir__) | |
| 4 4 | 
             
            $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
         | 
| 5 5 |  | 
| 6 6 | 
             
            Gem::Specification.new do |spec|
         | 
| 7 | 
            -
              spec.version     = '0. | 
| 7 | 
            +
              spec.version     = '0.85.0'
         | 
| 8 8 |  | 
| 9 9 | 
             
              spec.name        = 'armitage-rubocop'
         | 
| 10 10 | 
             
              spec.license     = 'MIT'
         | 
| @@ -22,8 +22,8 @@ Gem::Specification.new do |spec| | |
| 22 22 | 
             
                `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
         | 
| 23 23 | 
             
              end
         | 
| 24 24 |  | 
| 25 | 
            -
              spec.add_dependency 'rubocop',             '= 0. | 
| 26 | 
            -
              spec.add_dependency 'rubocop-performance', '= 1. | 
| 25 | 
            +
              spec.add_dependency 'rubocop',             '= 0.85.0'
         | 
| 26 | 
            +
              spec.add_dependency 'rubocop-performance', '= 1.6.1'
         | 
| 27 27 | 
             
              spec.add_dependency 'rubocop-rails',       '= 2.5.2'
         | 
| 28 28 | 
             
              spec.add_dependency 'rubocop-rspec',       '= 1.39.0'
         | 
| 29 29 | 
             
              spec.add_dependency 'rubocop-rake',        '= 0.5.1'
         | 
    
        data/lib/common/layout.yml
    CHANGED
    
    | @@ -64,6 +64,7 @@ Layout/CommentIndentation: | |
| 64 64 |  | 
| 65 65 | 
             
            Layout/ConditionPosition:
         | 
| 66 66 | 
             
              Enabled: true
         | 
| 67 | 
            +
              AutoCorrect: true
         | 
| 67 68 |  | 
| 68 69 | 
             
            Layout/DefEndAlignment:
         | 
| 69 70 | 
             
              Enabled: true
         | 
| @@ -89,6 +90,15 @@ Layout/EmptyLineAfterGuardClause: | |
| 89 90 | 
             
            Layout/EmptyLineAfterMagicComment:
         | 
| 90 91 | 
             
              Enabled: true
         | 
| 91 92 |  | 
| 93 | 
            +
            Layout/EmptyLinesAroundAttributeAccessor:
         | 
| 94 | 
            +
              Enabled: true
         | 
| 95 | 
            +
              AllowAliasSyntax: true
         | 
| 96 | 
            +
              AllowedMethods:
         | 
| 97 | 
            +
                - alias_method
         | 
| 98 | 
            +
                - public
         | 
| 99 | 
            +
                - protected
         | 
| 100 | 
            +
                - private
         | 
| 101 | 
            +
             | 
| 92 102 | 
             
            Layout/EmptyLineBetweenDefs:
         | 
| 93 103 | 
             
              Enabled: true
         | 
| 94 104 | 
             
              NumberOfEmptyLines: 1
         | 
| @@ -182,7 +192,6 @@ Layout/FirstHashElementIndentation: | |
| 182 192 |  | 
| 183 193 | 
             
            Layout/HeredocIndentation:
         | 
| 184 194 | 
             
              Enabled: true
         | 
| 185 | 
            -
              EnforcedStyle: squiggly
         | 
| 186 195 |  | 
| 187 196 | 
             
            Layout/IndentationConsistency:
         | 
| 188 197 | 
             
              Enabled: true
         | 
    
        data/lib/common/lint.yml
    CHANGED
    
    | @@ -26,6 +26,9 @@ Lint/Debugger: | |
| 26 26 | 
             
            Lint/DeprecatedClassMethods:
         | 
| 27 27 | 
             
              Enabled: true
         | 
| 28 28 |  | 
| 29 | 
            +
            Lint/DeprecatedOpenSSLConstant:
         | 
| 30 | 
            +
              Enabled: true
         | 
| 31 | 
            +
             | 
| 29 32 | 
             
            Lint/DuplicateCaseCondition:
         | 
| 30 33 | 
             
              Enabled: true
         | 
| 31 34 |  | 
| @@ -53,9 +56,11 @@ Lint/EmptyInterpolation: | |
| 53 56 |  | 
| 54 57 | 
             
            Lint/EmptyWhen:
         | 
| 55 58 | 
             
              Enabled: false
         | 
| 59 | 
            +
              AllowComments: true
         | 
| 56 60 |  | 
| 57 61 | 
             
            Lint/EnsureReturn:
         | 
| 58 62 | 
             
              Enabled: true
         | 
| 63 | 
            +
              AutoCorrect: false
         | 
| 59 64 |  | 
| 60 65 | 
             
            Lint/ErbNewArguments:
         | 
| 61 66 | 
             
              Enabled: true
         | 
| @@ -107,6 +112,10 @@ Lint/Loop: | |
| 107 112 | 
             
            Lint/MissingCopEnableDirective:
         | 
| 108 113 | 
             
              Enabled: true
         | 
| 109 114 |  | 
| 115 | 
            +
            Lint/MixedRegexpCaptureTypes:
         | 
| 116 | 
            +
              Enabled: true
         | 
| 117 | 
            +
              # NOTE: if you use named captures - numbered captures will be ignored. it is bad. validate it.
         | 
| 118 | 
            +
             | 
| 110 119 | 
             
            Lint/MultipleComparison:
         | 
| 111 120 | 
             
              Enabled: true
         | 
| 112 121 |  | 
| @@ -131,10 +140,9 @@ Lint/NumberConversion: | |
| 131 140 | 
             
            Lint/OrderedMagicComments:
         | 
| 132 141 | 
             
              Enabled: true
         | 
| 133 142 |  | 
| 134 | 
            -
            # WARNING!!!
         | 
| 135 143 | 
             
            Lint/ParenthesesAsGroupedExpression:
         | 
| 136 | 
            -
              Enabled:  | 
| 137 | 
            -
             | 
| 144 | 
            +
              Enabled: true
         | 
| 145 | 
            +
              AutoCorrect: true
         | 
| 138 146 |  | 
| 139 147 | 
             
            Lint/PercentStringArray:
         | 
| 140 148 | 
             
              Enabled: true
         | 
| @@ -243,6 +251,12 @@ Lint/UriRegexp: | |
| 243 251 |  | 
| 244 252 | 
             
            Lint/UselessAccessModifier:
         | 
| 245 253 | 
             
              Enabled: true
         | 
| 254 | 
            +
              ContextCreatingMethods: []
         | 
| 255 | 
            +
              MethodCreatingMethods:
         | 
| 256 | 
            +
                - delegate
         | 
| 257 | 
            +
                - def_delegator
         | 
| 258 | 
            +
                - def_delegators
         | 
| 259 | 
            +
              AutoCorrect: true
         | 
| 246 260 |  | 
| 247 261 | 
             
            Lint/UselessAssignment:
         | 
| 248 262 | 
             
              Enabled: true
         | 
    
        data/lib/common/naming.yml
    CHANGED
    
    | @@ -9,6 +9,7 @@ Naming/BinaryOperatorParameterName: | |
| 9 9 |  | 
| 10 10 | 
             
            Naming/ClassAndModuleCamelCase:
         | 
| 11 11 | 
             
              Enabled: true
         | 
| 12 | 
            +
              AllowedNames: []
         | 
| 12 13 |  | 
| 13 14 | 
             
            Naming/ConstantName:
         | 
| 14 15 | 
             
              Enabled: true
         | 
| @@ -17,6 +18,7 @@ Naming/FileName: | |
| 17 18 | 
             
              Enabled: true
         | 
| 18 19 | 
             
              ExpectMatchingDefinition: false
         | 
| 19 20 | 
             
              IgnoreExecutableScripts: true
         | 
| 21 | 
            +
              CheckDefinitionPathHierarchy: false
         | 
| 20 22 |  | 
| 21 23 | 
             
            Naming/HeredocDelimiterCase:
         | 
| 22 24 | 
             
              Enabled: true
         | 
    
        data/lib/common/performance.yml
    CHANGED
    
    | @@ -1,3 +1,6 @@ | |
| 1 | 
            +
            Performance/BindCall:
         | 
| 2 | 
            +
              Enabled: true
         | 
| 3 | 
            +
             | 
| 1 4 | 
             
            Performance/Caller:
         | 
| 2 5 | 
             
              Enabled: true
         | 
| 3 6 |  | 
| @@ -18,6 +21,12 @@ Performance/Count: | |
| 18 21 | 
             
              Enabled: true
         | 
| 19 22 | 
             
              SafeAutoCorrect: false
         | 
| 20 23 |  | 
| 24 | 
            +
            Performance/DeletePrefix:
         | 
| 25 | 
            +
              Enabled: true
         | 
| 26 | 
            +
             | 
| 27 | 
            +
            Performance/DeleteSuffix:
         | 
| 28 | 
            +
              Enabled: true
         | 
| 29 | 
            +
             | 
| 21 30 | 
             
            Performance/Detect:
         | 
| 22 31 | 
             
              Enabled: true
         | 
| 23 32 | 
             
              SafeAutoCorrect: false
         | 
    
        data/lib/common/style.yml
    CHANGED
    
    | @@ -87,7 +87,7 @@ Style/Copyright: | |
| 87 87 | 
             
              Enabled: false
         | 
| 88 88 |  | 
| 89 89 | 
             
            Style/DateTime:
         | 
| 90 | 
            -
              Enabled:  | 
| 90 | 
            +
              Enabled: false
         | 
| 91 91 | 
             
              AllowCoercion: false
         | 
| 92 92 |  | 
| 93 93 | 
             
            Style/DefWithParentheses:
         | 
| @@ -107,6 +107,7 @@ Style/DocumentationMethod: | |
| 107 107 |  | 
| 108 108 | 
             
            Style/DoubleNegation:
         | 
| 109 109 | 
             
              Enabled: false
         | 
| 110 | 
            +
              EnforcedStyle: allowed_in_returns
         | 
| 110 111 |  | 
| 111 112 | 
             
            Style/EachForSimpleLoop:
         | 
| 112 113 | 
             
              Enabled: false
         | 
| @@ -212,6 +213,7 @@ Style/IfUnlessModifierOfIfUnless: | |
| 212 213 |  | 
| 213 214 | 
             
            Style/IfWithSemicolon:
         | 
| 214 215 | 
             
              Enabled: true
         | 
| 216 | 
            +
              AutoCorrect: true
         | 
| 215 217 |  | 
| 216 218 | 
             
            Style/ImplicitRuntimeError:
         | 
| 217 219 | 
             
              Enabled: false
         | 
| @@ -396,6 +398,12 @@ Style/RedundantBegin: | |
| 396 398 | 
             
            Style/RedundantConditional:
         | 
| 397 399 | 
             
              Enabled: true
         | 
| 398 400 |  | 
| 401 | 
            +
            Style/RedundantRegexpCharacterClass:
         | 
| 402 | 
            +
              Enabled: true
         | 
| 403 | 
            +
             | 
| 404 | 
            +
            Style/RedundantRegexpEscape:
         | 
| 405 | 
            +
              Enabled: true
         | 
| 406 | 
            +
             | 
| 399 407 | 
             
            Style/RedundantException:
         | 
| 400 408 | 
             
              Enabled: false
         | 
| 401 409 |  | 
| @@ -457,6 +465,9 @@ Style/SingleLineMethods: | |
| 457 465 | 
             
              Exclude:
         | 
| 458 466 | 
             
                - spec/**/*
         | 
| 459 467 |  | 
| 468 | 
            +
            Style/SlicingWithRange:
         | 
| 469 | 
            +
              Enabled: true
         | 
| 470 | 
            +
             | 
| 460 471 | 
             
            Style/SpecialGlobalVars:
         | 
| 461 472 | 
             
              Enabled: true
         | 
| 462 473 |  | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: armitage-rubocop
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0. | 
| 4 | 
            +
              version: 0.85.0
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Rustam Ibragimov
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2020- | 
| 11 | 
            +
            date: 2020-06-07 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: rubocop
         | 
| @@ -16,28 +16,28 @@ dependencies: | |
| 16 16 | 
             
                requirements:
         | 
| 17 17 | 
             
                - - '='
         | 
| 18 18 | 
             
                  - !ruby/object:Gem::Version
         | 
| 19 | 
            -
                    version: 0. | 
| 19 | 
            +
                    version: 0.85.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.85.0
         | 
| 27 27 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 28 28 | 
             
              name: rubocop-performance
         | 
| 29 29 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 30 30 | 
             
                requirements:
         | 
| 31 31 | 
             
                - - '='
         | 
| 32 32 | 
             
                  - !ruby/object:Gem::Version
         | 
| 33 | 
            -
                    version: 1. | 
| 33 | 
            +
                    version: 1.6.1
         | 
| 34 34 | 
             
              type: :runtime
         | 
| 35 35 | 
             
              prerelease: false
         | 
| 36 36 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 37 37 | 
             
                requirements:
         | 
| 38 38 | 
             
                - - '='
         | 
| 39 39 | 
             
                  - !ruby/object:Gem::Version
         | 
| 40 | 
            -
                    version: 1. | 
| 40 | 
            +
                    version: 1.6.1
         | 
| 41 41 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 42 42 | 
             
              name: rubocop-rails
         | 
| 43 43 | 
             
              requirement: !ruby/object:Gem::Requirement
         |