sabat-rubocop 0.9.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.
- data/.gitignore +50 -0
 - data/.rspec +1 -0
 - data/.rubocop.yml +7 -0
 - data/.travis.yml +7 -0
 - data/.yardopts +2 -0
 - data/CHANGELOG.md +268 -0
 - data/CONTRIBUTING.md +16 -0
 - data/Gemfile +7 -0
 - data/LICENSE.txt +20 -0
 - data/README.md +324 -0
 - data/Rakefile +29 -0
 - data/bin/rubocop +22 -0
 - data/config/default.yml +58 -0
 - data/config/disabled.yml +5 -0
 - data/config/enabled.yml +403 -0
 - data/lib/rubocop.rb +116 -0
 - data/lib/rubocop/cli.rb +407 -0
 - data/lib/rubocop/config.rb +250 -0
 - data/lib/rubocop/config_store.rb +39 -0
 - data/lib/rubocop/cop/cop.rb +138 -0
 - data/lib/rubocop/cop/lint/assignment_in_condition.rb +54 -0
 - data/lib/rubocop/cop/lint/end_alignment.rb +189 -0
 - data/lib/rubocop/cop/lint/end_in_method.rb +30 -0
 - data/lib/rubocop/cop/lint/ensure_return.rb +22 -0
 - data/lib/rubocop/cop/lint/eval.rb +22 -0
 - data/lib/rubocop/cop/lint/handle_exceptions.rb +20 -0
 - data/lib/rubocop/cop/lint/literal_in_condition.rb +81 -0
 - data/lib/rubocop/cop/lint/loop.rb +29 -0
 - data/lib/rubocop/cop/lint/rescue_exception.rb +29 -0
 - data/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +34 -0
 - data/lib/rubocop/cop/lint/unreachable_code.rb +35 -0
 - data/lib/rubocop/cop/lint/unused_local_variable.rb +32 -0
 - data/lib/rubocop/cop/lint/void.rb +58 -0
 - data/lib/rubocop/cop/offence.rb +136 -0
 - data/lib/rubocop/cop/rails/validation.rb +30 -0
 - data/lib/rubocop/cop/style/access_control.rb +58 -0
 - data/lib/rubocop/cop/style/alias.rb +28 -0
 - data/lib/rubocop/cop/style/align_parameters.rb +39 -0
 - data/lib/rubocop/cop/style/and_or.rb +45 -0
 - data/lib/rubocop/cop/style/ascii_comments.rb +21 -0
 - data/lib/rubocop/cop/style/ascii_identifiers.rb +22 -0
 - data/lib/rubocop/cop/style/attr.rb +20 -0
 - data/lib/rubocop/cop/style/avoid_class_vars.rb +20 -0
 - data/lib/rubocop/cop/style/avoid_for.rb +18 -0
 - data/lib/rubocop/cop/style/avoid_global_vars.rb +65 -0
 - data/lib/rubocop/cop/style/avoid_perl_backrefs.rb +21 -0
 - data/lib/rubocop/cop/style/avoid_perlisms.rb +50 -0
 - data/lib/rubocop/cop/style/begin_block.rb +18 -0
 - data/lib/rubocop/cop/style/block_comments.rb +20 -0
 - data/lib/rubocop/cop/style/block_nesting.rb +47 -0
 - data/lib/rubocop/cop/style/blocks.rb +27 -0
 - data/lib/rubocop/cop/style/case_equality.rb +22 -0
 - data/lib/rubocop/cop/style/case_indentation.rb +28 -0
 - data/lib/rubocop/cop/style/character_literal.rb +37 -0
 - data/lib/rubocop/cop/style/class_and_module_camel_case.rb +33 -0
 - data/lib/rubocop/cop/style/class_methods.rb +22 -0
 - data/lib/rubocop/cop/style/collection_methods.rb +56 -0
 - data/lib/rubocop/cop/style/colon_method_call.rb +29 -0
 - data/lib/rubocop/cop/style/constant_name.rb +31 -0
 - data/lib/rubocop/cop/style/def_parentheses.rb +70 -0
 - data/lib/rubocop/cop/style/documentation.rb +58 -0
 - data/lib/rubocop/cop/style/dot_position.rb +25 -0
 - data/lib/rubocop/cop/style/empty_line_between_defs.rb +26 -0
 - data/lib/rubocop/cop/style/empty_lines.rb +40 -0
 - data/lib/rubocop/cop/style/empty_literal.rb +53 -0
 - data/lib/rubocop/cop/style/encoding.rb +29 -0
 - data/lib/rubocop/cop/style/end_block.rb +18 -0
 - data/lib/rubocop/cop/style/end_of_line.rb +23 -0
 - data/lib/rubocop/cop/style/favor_join.rb +29 -0
 - data/lib/rubocop/cop/style/favor_modifier.rb +118 -0
 - data/lib/rubocop/cop/style/favor_sprintf.rb +28 -0
 - data/lib/rubocop/cop/style/favor_unless_over_negated_if.rb +54 -0
 - data/lib/rubocop/cop/style/hash_syntax.rb +47 -0
 - data/lib/rubocop/cop/style/if_then_else.rb +29 -0
 - data/lib/rubocop/cop/style/if_with_semicolon.rb +20 -0
 - data/lib/rubocop/cop/style/lambda.rb +47 -0
 - data/lib/rubocop/cop/style/leading_comment_space.rb +25 -0
 - data/lib/rubocop/cop/style/line_continuation.rb +26 -0
 - data/lib/rubocop/cop/style/line_length.rb +30 -0
 - data/lib/rubocop/cop/style/method_and_variable_snake_case.rb +61 -0
 - data/lib/rubocop/cop/style/method_call_parentheses.rb +22 -0
 - data/lib/rubocop/cop/style/method_length.rb +57 -0
 - data/lib/rubocop/cop/style/multiline_if_then.rb +47 -0
 - data/lib/rubocop/cop/style/not.rb +24 -0
 - data/lib/rubocop/cop/style/numeric_literals.rb +25 -0
 - data/lib/rubocop/cop/style/one_line_conditional.rb +20 -0
 - data/lib/rubocop/cop/style/op_method.rb +29 -0
 - data/lib/rubocop/cop/style/parameter_lists.rb +42 -0
 - data/lib/rubocop/cop/style/parentheses_around_condition.rb +42 -0
 - data/lib/rubocop/cop/style/proc.rb +30 -0
 - data/lib/rubocop/cop/style/reduce_arguments.rb +34 -0
 - data/lib/rubocop/cop/style/regexp_literal.rb +39 -0
 - data/lib/rubocop/cop/style/rescue_modifier.rb +55 -0
 - data/lib/rubocop/cop/style/semicolon.rb +51 -0
 - data/lib/rubocop/cop/style/single_line_methods.rb +48 -0
 - data/lib/rubocop/cop/style/space_after_comma_etc.rb +69 -0
 - data/lib/rubocop/cop/style/space_after_control_keyword.rb +32 -0
 - data/lib/rubocop/cop/style/string_literals.rb +36 -0
 - data/lib/rubocop/cop/style/surrounding_space.rb +314 -0
 - data/lib/rubocop/cop/style/symbol_array.rb +31 -0
 - data/lib/rubocop/cop/style/symbol_name.rb +27 -0
 - data/lib/rubocop/cop/style/tab.rb +25 -0
 - data/lib/rubocop/cop/style/ternary_operator.rb +49 -0
 - data/lib/rubocop/cop/style/trailing_whitespace.rb +24 -0
 - data/lib/rubocop/cop/style/trivial_accessors.rb +32 -0
 - data/lib/rubocop/cop/style/unless_else.rb +26 -0
 - data/lib/rubocop/cop/style/variable_interpolation.rb +32 -0
 - data/lib/rubocop/cop/style/when_then.rb +25 -0
 - data/lib/rubocop/cop/style/while_until_do.rb +45 -0
 - data/lib/rubocop/cop/style/word_array.rb +44 -0
 - data/lib/rubocop/cop/util.rb +27 -0
 - data/lib/rubocop/cop/variable_inspector.rb +280 -0
 - data/lib/rubocop/formatter/base_formatter.rb +119 -0
 - data/lib/rubocop/formatter/clang_style_formatter.rb +21 -0
 - data/lib/rubocop/formatter/emacs_style_formatter.rb +17 -0
 - data/lib/rubocop/formatter/formatter_set.rb +77 -0
 - data/lib/rubocop/formatter/json_formatter.rb +76 -0
 - data/lib/rubocop/formatter/progress_formatter.rb +63 -0
 - data/lib/rubocop/formatter/simple_text_formatter.rb +62 -0
 - data/lib/rubocop/version.rb +21 -0
 - data/rubocop.gemspec +36 -0
 - data/spec/.rubocop.yml +5 -0
 - data/spec/project_spec.rb +24 -0
 - data/spec/rubocop/cli_spec.rb +906 -0
 - data/spec/rubocop/config_spec.rb +470 -0
 - data/spec/rubocop/config_store_spec.rb +66 -0
 - data/spec/rubocop/cops/cop_spec.rb +38 -0
 - data/spec/rubocop/cops/lint/assignment_in_condition_spec.rb +111 -0
 - data/spec/rubocop/cops/lint/end_alignment_spec.rb +333 -0
 - data/spec/rubocop/cops/lint/end_in_method_spec.rb +35 -0
 - data/spec/rubocop/cops/lint/ensure_return_spec.rb +37 -0
 - data/spec/rubocop/cops/lint/eval_spec.rb +41 -0
 - data/spec/rubocop/cops/lint/handle_exceptions_spec.rb +36 -0
 - data/spec/rubocop/cops/lint/literal_in_condition_spec.rb +42 -0
 - data/spec/rubocop/cops/lint/loop_spec.rb +33 -0
 - data/spec/rubocop/cops/lint/rescue_exception_spec.rb +127 -0
 - data/spec/rubocop/cops/lint/shadowing_outer_local_variable_spec.rb +243 -0
 - data/spec/rubocop/cops/lint/unreachable_code_spec.rb +69 -0
 - data/spec/rubocop/cops/lint/unused_local_variable_spec.rb +497 -0
 - data/spec/rubocop/cops/lint/void_spec.rb +63 -0
 - data/spec/rubocop/cops/offence_spec.rb +133 -0
 - data/spec/rubocop/cops/rails/validation_spec.rb +27 -0
 - data/spec/rubocop/cops/style/access_control_spec.rb +142 -0
 - data/spec/rubocop/cops/style/alias_spec.rb +47 -0
 - data/spec/rubocop/cops/style/align_parameters_spec.rb +199 -0
 - data/spec/rubocop/cops/style/and_or_spec.rb +39 -0
 - data/spec/rubocop/cops/style/ascii_comments_spec.rb +28 -0
 - data/spec/rubocop/cops/style/ascii_identifiers_spec.rb +28 -0
 - data/spec/rubocop/cops/style/attr_spec.rb +20 -0
 - data/spec/rubocop/cops/style/avoid_class_vars_spec.rb +27 -0
 - data/spec/rubocop/cops/style/avoid_for_spec.rb +37 -0
 - data/spec/rubocop/cops/style/avoid_global_vars_spec.rb +34 -0
 - data/spec/rubocop/cops/style/avoid_perl_backrefs_spec.rb +20 -0
 - data/spec/rubocop/cops/style/avoid_perlisms_spec.rb +47 -0
 - data/spec/rubocop/cops/style/begin_block_spec.rb +19 -0
 - data/spec/rubocop/cops/style/block_comments_spec.rb +27 -0
 - data/spec/rubocop/cops/style/block_nesting_spec.rb +159 -0
 - data/spec/rubocop/cops/style/blocks_spec.rb +35 -0
 - data/spec/rubocop/cops/style/case_equality_spec.rb +18 -0
 - data/spec/rubocop/cops/style/case_indentation_spec.rb +88 -0
 - data/spec/rubocop/cops/style/character_literal_spec.rb +28 -0
 - data/spec/rubocop/cops/style/class_and_module_camel_case_spec.rb +46 -0
 - data/spec/rubocop/cops/style/class_methods_spec.rb +51 -0
 - data/spec/rubocop/cops/style/collection_methods_spec.rb +41 -0
 - data/spec/rubocop/cops/style/colon_method_call_spec.rb +55 -0
 - data/spec/rubocop/cops/style/constant_name_spec.rb +56 -0
 - data/spec/rubocop/cops/style/def_with_parentheses_spec.rb +40 -0
 - data/spec/rubocop/cops/style/def_without_parentheses_spec.rb +34 -0
 - data/spec/rubocop/cops/style/documentation_spec.rb +79 -0
 - data/spec/rubocop/cops/style/dot_position_spec.rb +30 -0
 - data/spec/rubocop/cops/style/empty_line_between_defs_spec.rb +85 -0
 - data/spec/rubocop/cops/style/empty_lines_spec.rb +40 -0
 - data/spec/rubocop/cops/style/empty_literal_spec.rb +91 -0
 - data/spec/rubocop/cops/style/encoding_spec.rb +49 -0
 - data/spec/rubocop/cops/style/end_block_spec.rb +19 -0
 - data/spec/rubocop/cops/style/end_of_line_spec.rb +25 -0
 - data/spec/rubocop/cops/style/favor_join_spec.rb +37 -0
 - data/spec/rubocop/cops/style/favor_modifier_spec.rb +160 -0
 - data/spec/rubocop/cops/style/favor_sprintf_spec.rb +53 -0
 - data/spec/rubocop/cops/style/favor_unless_over_negated_if_spec.rb +64 -0
 - data/spec/rubocop/cops/style/favor_until_over_negated_while_spec.rb +47 -0
 - data/spec/rubocop/cops/style/hash_syntax_spec.rb +51 -0
 - data/spec/rubocop/cops/style/if_with_semicolon_spec.rb +25 -0
 - data/spec/rubocop/cops/style/lambda_spec.rb +45 -0
 - data/spec/rubocop/cops/style/leading_comment_space_spec.rb +65 -0
 - data/spec/rubocop/cops/style/line_continuation_spec.rb +26 -0
 - data/spec/rubocop/cops/style/line_length_spec.rb +25 -0
 - data/spec/rubocop/cops/style/method_and_variable_snake_case_spec.rb +95 -0
 - data/spec/rubocop/cops/style/method_call_parentheses_spec.rb +25 -0
 - data/spec/rubocop/cops/style/method_length_spec.rb +151 -0
 - data/spec/rubocop/cops/style/multiline_if_then_spec.rb +97 -0
 - data/spec/rubocop/cops/style/not_spec.rb +28 -0
 - data/spec/rubocop/cops/style/numeric_literals_spec.rb +51 -0
 - data/spec/rubocop/cops/style/one_line_conditional_spec.rb +18 -0
 - data/spec/rubocop/cops/style/op_method_spec.rb +80 -0
 - data/spec/rubocop/cops/style/parameter_lists_spec.rb +49 -0
 - data/spec/rubocop/cops/style/parentheses_around_condition_spec.rb +59 -0
 - data/spec/rubocop/cops/style/proc_spec.rb +28 -0
 - data/spec/rubocop/cops/style/reduce_arguments_spec.rb +59 -0
 - data/spec/rubocop/cops/style/regexp_literal_spec.rb +83 -0
 - data/spec/rubocop/cops/style/rescue_modifier_spec.rb +122 -0
 - data/spec/rubocop/cops/style/semicolon_spec.rb +95 -0
 - data/spec/rubocop/cops/style/single_line_methods_spec.rb +54 -0
 - data/spec/rubocop/cops/style/space_after_colon_spec.rb +29 -0
 - data/spec/rubocop/cops/style/space_after_comma_spec.rb +31 -0
 - data/spec/rubocop/cops/style/space_after_control_keyword_spec.rb +69 -0
 - data/spec/rubocop/cops/style/space_after_semicolon_spec.rb +24 -0
 - data/spec/rubocop/cops/style/space_around_braces_spec.rb +49 -0
 - data/spec/rubocop/cops/style/space_around_equals_in_default_parameter_spec.rb +34 -0
 - data/spec/rubocop/cops/style/space_around_operators_spec.rb +216 -0
 - data/spec/rubocop/cops/style/space_inside_brackets_spec.rb +51 -0
 - data/spec/rubocop/cops/style/space_inside_hash_literal_braces_spec.rb +99 -0
 - data/spec/rubocop/cops/style/space_inside_parens_spec.rb +33 -0
 - data/spec/rubocop/cops/style/string_literals_spec.rb +62 -0
 - data/spec/rubocop/cops/style/symbol_array_spec.rb +45 -0
 - data/spec/rubocop/cops/style/symbol_name_spec.rb +122 -0
 - data/spec/rubocop/cops/style/tab_spec.rb +23 -0
 - data/spec/rubocop/cops/style/ternary_operator_spec.rb +42 -0
 - data/spec/rubocop/cops/style/trailing_whitespace_spec.rb +29 -0
 - data/spec/rubocop/cops/style/trivial_accessors_spec.rb +338 -0
 - data/spec/rubocop/cops/style/unless_else_spec.rb +31 -0
 - data/spec/rubocop/cops/style/variable_interpolation_spec.rb +53 -0
 - data/spec/rubocop/cops/style/when_then_spec.rb +40 -0
 - data/spec/rubocop/cops/style/while_until_do_spec.rb +47 -0
 - data/spec/rubocop/cops/style/word_array_spec.rb +61 -0
 - data/spec/rubocop/cops/variable_inspector_spec.rb +374 -0
 - data/spec/rubocop/formatter/base_formatter_spec.rb +190 -0
 - data/spec/rubocop/formatter/clang_style_formatter_spec.rb +70 -0
 - data/spec/rubocop/formatter/emacs_style_formatter_spec.rb +32 -0
 - data/spec/rubocop/formatter/formatter_set_spec.rb +132 -0
 - data/spec/rubocop/formatter/json_formatter_spec.rb +142 -0
 - data/spec/rubocop/formatter/progress_formatter_spec.rb +196 -0
 - data/spec/rubocop/formatter/simple_text_formatter_spec.rb +74 -0
 - data/spec/spec_helper.rb +92 -0
 - data/spec/support/file_helper.rb +21 -0
 - data/spec/support/isolated_environment.rb +27 -0
 - data/spec/support/mri_syntax_checker.rb +69 -0
 - data/spec/support/shared_examples.rb +33 -0
 - metadata +517 -0
 
| 
         @@ -0,0 +1,33 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # encoding: utf-8
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            # `cop` and `source` must be declared with #let.
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            shared_examples_for 'accepts' do
         
     | 
| 
      
 6 
     | 
    
         
            +
              it 'accepts' do
         
     | 
| 
      
 7 
     | 
    
         
            +
                inspect_source(cop, source)
         
     | 
| 
      
 8 
     | 
    
         
            +
                expect(cop.offences).to be_empty
         
     | 
| 
      
 9 
     | 
    
         
            +
              end
         
     | 
| 
      
 10 
     | 
    
         
            +
            end
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
            shared_examples_for 'mimics MRI 2.0' do |grep_mri_warning|
         
     | 
| 
      
 13 
     | 
    
         
            +
              if RUBY_ENGINE == 'ruby' && RUBY_VERSION.start_with?('2.0')
         
     | 
| 
      
 14 
     | 
    
         
            +
                it "mimics MRI #{RUBY_VERSION} built-in syntax checking" do
         
     | 
| 
      
 15 
     | 
    
         
            +
                  inspect_source(cop, source)
         
     | 
| 
      
 16 
     | 
    
         
            +
                  offences_by_mri = MRISyntaxChecker.offences_for_source(
         
     | 
| 
      
 17 
     | 
    
         
            +
                    source, cop.name, grep_mri_warning
         
     | 
| 
      
 18 
     | 
    
         
            +
                  )
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
      
 20 
     | 
    
         
            +
                  # Compare objects before comparing counts for clear failure output.
         
     | 
| 
      
 21 
     | 
    
         
            +
                  cop.offences.each_with_index do |offence_by_cop, index|
         
     | 
| 
      
 22 
     | 
    
         
            +
                    offence_by_mri = offences_by_mri[index]
         
     | 
| 
      
 23 
     | 
    
         
            +
                    # Exclude column attribute since MRI does not
         
     | 
| 
      
 24 
     | 
    
         
            +
                    # output column number.
         
     | 
| 
      
 25 
     | 
    
         
            +
                    [:severity, :line, :cop_name, :message].each do |a|
         
     | 
| 
      
 26 
     | 
    
         
            +
                      expect(offence_by_cop.send(a)).to eq(offence_by_mri.send(a))
         
     | 
| 
      
 27 
     | 
    
         
            +
                    end
         
     | 
| 
      
 28 
     | 
    
         
            +
                  end
         
     | 
| 
      
 29 
     | 
    
         
            +
             
     | 
| 
      
 30 
     | 
    
         
            +
                  expect(cop.offences.count).to eq(offences_by_mri.count)
         
     | 
| 
      
 31 
     | 
    
         
            +
                end
         
     | 
| 
      
 32 
     | 
    
         
            +
              end
         
     | 
| 
      
 33 
     | 
    
         
            +
            end
         
     | 
    
        metadata
    ADDED
    
    | 
         @@ -0,0 +1,517 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            --- !ruby/object:Gem::Specification
         
     | 
| 
      
 2 
     | 
    
         
            +
            name: sabat-rubocop
         
     | 
| 
      
 3 
     | 
    
         
            +
            version: !ruby/object:Gem::Version
         
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.9.0
         
     | 
| 
      
 5 
     | 
    
         
            +
              prerelease: 
         
     | 
| 
      
 6 
     | 
    
         
            +
            platform: ruby
         
     | 
| 
      
 7 
     | 
    
         
            +
            authors:
         
     | 
| 
      
 8 
     | 
    
         
            +
            - Bozhidar Batsov
         
     | 
| 
      
 9 
     | 
    
         
            +
            autorequire: 
         
     | 
| 
      
 10 
     | 
    
         
            +
            bindir: bin
         
     | 
| 
      
 11 
     | 
    
         
            +
            cert_chain: []
         
     | 
| 
      
 12 
     | 
    
         
            +
            date: 2013-07-04 00:00:00.000000000 Z
         
     | 
| 
      
 13 
     | 
    
         
            +
            dependencies:
         
     | 
| 
      
 14 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 15 
     | 
    
         
            +
              name: rainbow
         
     | 
| 
      
 16 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 17 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 18 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 19 
     | 
    
         
            +
                - - ! '>='
         
     | 
| 
      
 20 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 21 
     | 
    
         
            +
                    version: 1.1.4
         
     | 
| 
      
 22 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 23 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 24 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 25 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 26 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 27 
     | 
    
         
            +
                - - ! '>='
         
     | 
| 
      
 28 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 29 
     | 
    
         
            +
                    version: 1.1.4
         
     | 
| 
      
 30 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 31 
     | 
    
         
            +
              name: parser
         
     | 
| 
      
 32 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 33 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 34 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 35 
     | 
    
         
            +
                - - '='
         
     | 
| 
      
 36 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 37 
     | 
    
         
            +
                    version: 2.0.0.beta9
         
     | 
| 
      
 38 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 39 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 40 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 41 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 42 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 43 
     | 
    
         
            +
                - - '='
         
     | 
| 
      
 44 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 45 
     | 
    
         
            +
                    version: 2.0.0.beta9
         
     | 
| 
      
 46 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 47 
     | 
    
         
            +
              name: rake
         
     | 
| 
      
 48 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 49 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 50 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 51 
     | 
    
         
            +
                - - ~>
         
     | 
| 
      
 52 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 53 
     | 
    
         
            +
                    version: '10.0'
         
     | 
| 
      
 54 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 55 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 56 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 57 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 58 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 59 
     | 
    
         
            +
                - - ~>
         
     | 
| 
      
 60 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 61 
     | 
    
         
            +
                    version: '10.0'
         
     | 
| 
      
 62 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 63 
     | 
    
         
            +
              name: rspec
         
     | 
| 
      
 64 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 65 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 66 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 67 
     | 
    
         
            +
                - - ~>
         
     | 
| 
      
 68 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 69 
     | 
    
         
            +
                    version: '2.13'
         
     | 
| 
      
 70 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 71 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 72 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 73 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 74 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 75 
     | 
    
         
            +
                - - ~>
         
     | 
| 
      
 76 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 77 
     | 
    
         
            +
                    version: '2.13'
         
     | 
| 
      
 78 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 79 
     | 
    
         
            +
              name: yard
         
     | 
| 
      
 80 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 81 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 82 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 83 
     | 
    
         
            +
                - - ~>
         
     | 
| 
      
 84 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 85 
     | 
    
         
            +
                    version: '0.8'
         
     | 
| 
      
 86 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 87 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 88 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 89 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 90 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 91 
     | 
    
         
            +
                - - ~>
         
     | 
| 
      
 92 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 93 
     | 
    
         
            +
                    version: '0.8'
         
     | 
| 
      
 94 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 95 
     | 
    
         
            +
              name: bundler
         
     | 
| 
      
 96 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 97 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 98 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 99 
     | 
    
         
            +
                - - ~>
         
     | 
| 
      
 100 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 101 
     | 
    
         
            +
                    version: '1.3'
         
     | 
| 
      
 102 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 103 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 104 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 105 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 106 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 107 
     | 
    
         
            +
                - - ~>
         
     | 
| 
      
 108 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 109 
     | 
    
         
            +
                    version: '1.3'
         
     | 
| 
      
 110 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 111 
     | 
    
         
            +
              name: simplecov
         
     | 
| 
      
 112 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 113 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 114 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 115 
     | 
    
         
            +
                - - ~>
         
     | 
| 
      
 116 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 117 
     | 
    
         
            +
                    version: '0.7'
         
     | 
| 
      
 118 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 119 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 120 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 121 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 122 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 123 
     | 
    
         
            +
                - - ~>
         
     | 
| 
      
 124 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 125 
     | 
    
         
            +
                    version: '0.7'
         
     | 
| 
      
 126 
     | 
    
         
            +
            description: ! "    Automatic Ruby code style checking tool.\n    Aims to enforce
         
     | 
| 
      
 127 
     | 
    
         
            +
              the community-driven Ruby Style Guide.\n"
         
     | 
| 
      
 128 
     | 
    
         
            +
            email: bozhidar@batsov.com
         
     | 
| 
      
 129 
     | 
    
         
            +
            executables:
         
     | 
| 
      
 130 
     | 
    
         
            +
            - rubocop
         
     | 
| 
      
 131 
     | 
    
         
            +
            extensions: []
         
     | 
| 
      
 132 
     | 
    
         
            +
            extra_rdoc_files:
         
     | 
| 
      
 133 
     | 
    
         
            +
            - LICENSE.txt
         
     | 
| 
      
 134 
     | 
    
         
            +
            - README.md
         
     | 
| 
      
 135 
     | 
    
         
            +
            files:
         
     | 
| 
      
 136 
     | 
    
         
            +
            - .gitignore
         
     | 
| 
      
 137 
     | 
    
         
            +
            - .rspec
         
     | 
| 
      
 138 
     | 
    
         
            +
            - .rubocop.yml
         
     | 
| 
      
 139 
     | 
    
         
            +
            - .travis.yml
         
     | 
| 
      
 140 
     | 
    
         
            +
            - .yardopts
         
     | 
| 
      
 141 
     | 
    
         
            +
            - CHANGELOG.md
         
     | 
| 
      
 142 
     | 
    
         
            +
            - CONTRIBUTING.md
         
     | 
| 
      
 143 
     | 
    
         
            +
            - Gemfile
         
     | 
| 
      
 144 
     | 
    
         
            +
            - LICENSE.txt
         
     | 
| 
      
 145 
     | 
    
         
            +
            - README.md
         
     | 
| 
      
 146 
     | 
    
         
            +
            - Rakefile
         
     | 
| 
      
 147 
     | 
    
         
            +
            - bin/rubocop
         
     | 
| 
      
 148 
     | 
    
         
            +
            - config/default.yml
         
     | 
| 
      
 149 
     | 
    
         
            +
            - config/disabled.yml
         
     | 
| 
      
 150 
     | 
    
         
            +
            - config/enabled.yml
         
     | 
| 
      
 151 
     | 
    
         
            +
            - lib/rubocop.rb
         
     | 
| 
      
 152 
     | 
    
         
            +
            - lib/rubocop/cli.rb
         
     | 
| 
      
 153 
     | 
    
         
            +
            - lib/rubocop/config.rb
         
     | 
| 
      
 154 
     | 
    
         
            +
            - lib/rubocop/config_store.rb
         
     | 
| 
      
 155 
     | 
    
         
            +
            - lib/rubocop/cop/cop.rb
         
     | 
| 
      
 156 
     | 
    
         
            +
            - lib/rubocop/cop/lint/assignment_in_condition.rb
         
     | 
| 
      
 157 
     | 
    
         
            +
            - lib/rubocop/cop/lint/end_alignment.rb
         
     | 
| 
      
 158 
     | 
    
         
            +
            - lib/rubocop/cop/lint/end_in_method.rb
         
     | 
| 
      
 159 
     | 
    
         
            +
            - lib/rubocop/cop/lint/ensure_return.rb
         
     | 
| 
      
 160 
     | 
    
         
            +
            - lib/rubocop/cop/lint/eval.rb
         
     | 
| 
      
 161 
     | 
    
         
            +
            - lib/rubocop/cop/lint/handle_exceptions.rb
         
     | 
| 
      
 162 
     | 
    
         
            +
            - lib/rubocop/cop/lint/literal_in_condition.rb
         
     | 
| 
      
 163 
     | 
    
         
            +
            - lib/rubocop/cop/lint/loop.rb
         
     | 
| 
      
 164 
     | 
    
         
            +
            - lib/rubocop/cop/lint/rescue_exception.rb
         
     | 
| 
      
 165 
     | 
    
         
            +
            - lib/rubocop/cop/lint/shadowing_outer_local_variable.rb
         
     | 
| 
      
 166 
     | 
    
         
            +
            - lib/rubocop/cop/lint/unreachable_code.rb
         
     | 
| 
      
 167 
     | 
    
         
            +
            - lib/rubocop/cop/lint/unused_local_variable.rb
         
     | 
| 
      
 168 
     | 
    
         
            +
            - lib/rubocop/cop/lint/void.rb
         
     | 
| 
      
 169 
     | 
    
         
            +
            - lib/rubocop/cop/offence.rb
         
     | 
| 
      
 170 
     | 
    
         
            +
            - lib/rubocop/cop/rails/validation.rb
         
     | 
| 
      
 171 
     | 
    
         
            +
            - lib/rubocop/cop/style/access_control.rb
         
     | 
| 
      
 172 
     | 
    
         
            +
            - lib/rubocop/cop/style/alias.rb
         
     | 
| 
      
 173 
     | 
    
         
            +
            - lib/rubocop/cop/style/align_parameters.rb
         
     | 
| 
      
 174 
     | 
    
         
            +
            - lib/rubocop/cop/style/and_or.rb
         
     | 
| 
      
 175 
     | 
    
         
            +
            - lib/rubocop/cop/style/ascii_comments.rb
         
     | 
| 
      
 176 
     | 
    
         
            +
            - lib/rubocop/cop/style/ascii_identifiers.rb
         
     | 
| 
      
 177 
     | 
    
         
            +
            - lib/rubocop/cop/style/attr.rb
         
     | 
| 
      
 178 
     | 
    
         
            +
            - lib/rubocop/cop/style/avoid_class_vars.rb
         
     | 
| 
      
 179 
     | 
    
         
            +
            - lib/rubocop/cop/style/avoid_for.rb
         
     | 
| 
      
 180 
     | 
    
         
            +
            - lib/rubocop/cop/style/avoid_global_vars.rb
         
     | 
| 
      
 181 
     | 
    
         
            +
            - lib/rubocop/cop/style/avoid_perl_backrefs.rb
         
     | 
| 
      
 182 
     | 
    
         
            +
            - lib/rubocop/cop/style/avoid_perlisms.rb
         
     | 
| 
      
 183 
     | 
    
         
            +
            - lib/rubocop/cop/style/begin_block.rb
         
     | 
| 
      
 184 
     | 
    
         
            +
            - lib/rubocop/cop/style/block_comments.rb
         
     | 
| 
      
 185 
     | 
    
         
            +
            - lib/rubocop/cop/style/block_nesting.rb
         
     | 
| 
      
 186 
     | 
    
         
            +
            - lib/rubocop/cop/style/blocks.rb
         
     | 
| 
      
 187 
     | 
    
         
            +
            - lib/rubocop/cop/style/case_equality.rb
         
     | 
| 
      
 188 
     | 
    
         
            +
            - lib/rubocop/cop/style/case_indentation.rb
         
     | 
| 
      
 189 
     | 
    
         
            +
            - lib/rubocop/cop/style/character_literal.rb
         
     | 
| 
      
 190 
     | 
    
         
            +
            - lib/rubocop/cop/style/class_and_module_camel_case.rb
         
     | 
| 
      
 191 
     | 
    
         
            +
            - lib/rubocop/cop/style/class_methods.rb
         
     | 
| 
      
 192 
     | 
    
         
            +
            - lib/rubocop/cop/style/collection_methods.rb
         
     | 
| 
      
 193 
     | 
    
         
            +
            - lib/rubocop/cop/style/colon_method_call.rb
         
     | 
| 
      
 194 
     | 
    
         
            +
            - lib/rubocop/cop/style/constant_name.rb
         
     | 
| 
      
 195 
     | 
    
         
            +
            - lib/rubocop/cop/style/def_parentheses.rb
         
     | 
| 
      
 196 
     | 
    
         
            +
            - lib/rubocop/cop/style/documentation.rb
         
     | 
| 
      
 197 
     | 
    
         
            +
            - lib/rubocop/cop/style/dot_position.rb
         
     | 
| 
      
 198 
     | 
    
         
            +
            - lib/rubocop/cop/style/empty_line_between_defs.rb
         
     | 
| 
      
 199 
     | 
    
         
            +
            - lib/rubocop/cop/style/empty_lines.rb
         
     | 
| 
      
 200 
     | 
    
         
            +
            - lib/rubocop/cop/style/empty_literal.rb
         
     | 
| 
      
 201 
     | 
    
         
            +
            - lib/rubocop/cop/style/encoding.rb
         
     | 
| 
      
 202 
     | 
    
         
            +
            - lib/rubocop/cop/style/end_block.rb
         
     | 
| 
      
 203 
     | 
    
         
            +
            - lib/rubocop/cop/style/end_of_line.rb
         
     | 
| 
      
 204 
     | 
    
         
            +
            - lib/rubocop/cop/style/favor_join.rb
         
     | 
| 
      
 205 
     | 
    
         
            +
            - lib/rubocop/cop/style/favor_modifier.rb
         
     | 
| 
      
 206 
     | 
    
         
            +
            - lib/rubocop/cop/style/favor_sprintf.rb
         
     | 
| 
      
 207 
     | 
    
         
            +
            - lib/rubocop/cop/style/favor_unless_over_negated_if.rb
         
     | 
| 
      
 208 
     | 
    
         
            +
            - lib/rubocop/cop/style/hash_syntax.rb
         
     | 
| 
      
 209 
     | 
    
         
            +
            - lib/rubocop/cop/style/if_then_else.rb
         
     | 
| 
      
 210 
     | 
    
         
            +
            - lib/rubocop/cop/style/if_with_semicolon.rb
         
     | 
| 
      
 211 
     | 
    
         
            +
            - lib/rubocop/cop/style/lambda.rb
         
     | 
| 
      
 212 
     | 
    
         
            +
            - lib/rubocop/cop/style/leading_comment_space.rb
         
     | 
| 
      
 213 
     | 
    
         
            +
            - lib/rubocop/cop/style/line_continuation.rb
         
     | 
| 
      
 214 
     | 
    
         
            +
            - lib/rubocop/cop/style/line_length.rb
         
     | 
| 
      
 215 
     | 
    
         
            +
            - lib/rubocop/cop/style/method_and_variable_snake_case.rb
         
     | 
| 
      
 216 
     | 
    
         
            +
            - lib/rubocop/cop/style/method_call_parentheses.rb
         
     | 
| 
      
 217 
     | 
    
         
            +
            - lib/rubocop/cop/style/method_length.rb
         
     | 
| 
      
 218 
     | 
    
         
            +
            - lib/rubocop/cop/style/multiline_if_then.rb
         
     | 
| 
      
 219 
     | 
    
         
            +
            - lib/rubocop/cop/style/not.rb
         
     | 
| 
      
 220 
     | 
    
         
            +
            - lib/rubocop/cop/style/numeric_literals.rb
         
     | 
| 
      
 221 
     | 
    
         
            +
            - lib/rubocop/cop/style/one_line_conditional.rb
         
     | 
| 
      
 222 
     | 
    
         
            +
            - lib/rubocop/cop/style/op_method.rb
         
     | 
| 
      
 223 
     | 
    
         
            +
            - lib/rubocop/cop/style/parameter_lists.rb
         
     | 
| 
      
 224 
     | 
    
         
            +
            - lib/rubocop/cop/style/parentheses_around_condition.rb
         
     | 
| 
      
 225 
     | 
    
         
            +
            - lib/rubocop/cop/style/proc.rb
         
     | 
| 
      
 226 
     | 
    
         
            +
            - lib/rubocop/cop/style/reduce_arguments.rb
         
     | 
| 
      
 227 
     | 
    
         
            +
            - lib/rubocop/cop/style/regexp_literal.rb
         
     | 
| 
      
 228 
     | 
    
         
            +
            - lib/rubocop/cop/style/rescue_modifier.rb
         
     | 
| 
      
 229 
     | 
    
         
            +
            - lib/rubocop/cop/style/semicolon.rb
         
     | 
| 
      
 230 
     | 
    
         
            +
            - lib/rubocop/cop/style/single_line_methods.rb
         
     | 
| 
      
 231 
     | 
    
         
            +
            - lib/rubocop/cop/style/space_after_comma_etc.rb
         
     | 
| 
      
 232 
     | 
    
         
            +
            - lib/rubocop/cop/style/space_after_control_keyword.rb
         
     | 
| 
      
 233 
     | 
    
         
            +
            - lib/rubocop/cop/style/string_literals.rb
         
     | 
| 
      
 234 
     | 
    
         
            +
            - lib/rubocop/cop/style/surrounding_space.rb
         
     | 
| 
      
 235 
     | 
    
         
            +
            - lib/rubocop/cop/style/symbol_array.rb
         
     | 
| 
      
 236 
     | 
    
         
            +
            - lib/rubocop/cop/style/symbol_name.rb
         
     | 
| 
      
 237 
     | 
    
         
            +
            - lib/rubocop/cop/style/tab.rb
         
     | 
| 
      
 238 
     | 
    
         
            +
            - lib/rubocop/cop/style/ternary_operator.rb
         
     | 
| 
      
 239 
     | 
    
         
            +
            - lib/rubocop/cop/style/trailing_whitespace.rb
         
     | 
| 
      
 240 
     | 
    
         
            +
            - lib/rubocop/cop/style/trivial_accessors.rb
         
     | 
| 
      
 241 
     | 
    
         
            +
            - lib/rubocop/cop/style/unless_else.rb
         
     | 
| 
      
 242 
     | 
    
         
            +
            - lib/rubocop/cop/style/variable_interpolation.rb
         
     | 
| 
      
 243 
     | 
    
         
            +
            - lib/rubocop/cop/style/when_then.rb
         
     | 
| 
      
 244 
     | 
    
         
            +
            - lib/rubocop/cop/style/while_until_do.rb
         
     | 
| 
      
 245 
     | 
    
         
            +
            - lib/rubocop/cop/style/word_array.rb
         
     | 
| 
      
 246 
     | 
    
         
            +
            - lib/rubocop/cop/util.rb
         
     | 
| 
      
 247 
     | 
    
         
            +
            - lib/rubocop/cop/variable_inspector.rb
         
     | 
| 
      
 248 
     | 
    
         
            +
            - lib/rubocop/formatter/base_formatter.rb
         
     | 
| 
      
 249 
     | 
    
         
            +
            - lib/rubocop/formatter/clang_style_formatter.rb
         
     | 
| 
      
 250 
     | 
    
         
            +
            - lib/rubocop/formatter/emacs_style_formatter.rb
         
     | 
| 
      
 251 
     | 
    
         
            +
            - lib/rubocop/formatter/formatter_set.rb
         
     | 
| 
      
 252 
     | 
    
         
            +
            - lib/rubocop/formatter/json_formatter.rb
         
     | 
| 
      
 253 
     | 
    
         
            +
            - lib/rubocop/formatter/progress_formatter.rb
         
     | 
| 
      
 254 
     | 
    
         
            +
            - lib/rubocop/formatter/simple_text_formatter.rb
         
     | 
| 
      
 255 
     | 
    
         
            +
            - lib/rubocop/version.rb
         
     | 
| 
      
 256 
     | 
    
         
            +
            - rubocop.gemspec
         
     | 
| 
      
 257 
     | 
    
         
            +
            - spec/.rubocop.yml
         
     | 
| 
      
 258 
     | 
    
         
            +
            - spec/project_spec.rb
         
     | 
| 
      
 259 
     | 
    
         
            +
            - spec/rubocop/cli_spec.rb
         
     | 
| 
      
 260 
     | 
    
         
            +
            - spec/rubocop/config_spec.rb
         
     | 
| 
      
 261 
     | 
    
         
            +
            - spec/rubocop/config_store_spec.rb
         
     | 
| 
      
 262 
     | 
    
         
            +
            - spec/rubocop/cops/cop_spec.rb
         
     | 
| 
      
 263 
     | 
    
         
            +
            - spec/rubocop/cops/lint/assignment_in_condition_spec.rb
         
     | 
| 
      
 264 
     | 
    
         
            +
            - spec/rubocop/cops/lint/end_alignment_spec.rb
         
     | 
| 
      
 265 
     | 
    
         
            +
            - spec/rubocop/cops/lint/end_in_method_spec.rb
         
     | 
| 
      
 266 
     | 
    
         
            +
            - spec/rubocop/cops/lint/ensure_return_spec.rb
         
     | 
| 
      
 267 
     | 
    
         
            +
            - spec/rubocop/cops/lint/eval_spec.rb
         
     | 
| 
      
 268 
     | 
    
         
            +
            - spec/rubocop/cops/lint/handle_exceptions_spec.rb
         
     | 
| 
      
 269 
     | 
    
         
            +
            - spec/rubocop/cops/lint/literal_in_condition_spec.rb
         
     | 
| 
      
 270 
     | 
    
         
            +
            - spec/rubocop/cops/lint/loop_spec.rb
         
     | 
| 
      
 271 
     | 
    
         
            +
            - spec/rubocop/cops/lint/rescue_exception_spec.rb
         
     | 
| 
      
 272 
     | 
    
         
            +
            - spec/rubocop/cops/lint/shadowing_outer_local_variable_spec.rb
         
     | 
| 
      
 273 
     | 
    
         
            +
            - spec/rubocop/cops/lint/unreachable_code_spec.rb
         
     | 
| 
      
 274 
     | 
    
         
            +
            - spec/rubocop/cops/lint/unused_local_variable_spec.rb
         
     | 
| 
      
 275 
     | 
    
         
            +
            - spec/rubocop/cops/lint/void_spec.rb
         
     | 
| 
      
 276 
     | 
    
         
            +
            - spec/rubocop/cops/offence_spec.rb
         
     | 
| 
      
 277 
     | 
    
         
            +
            - spec/rubocop/cops/rails/validation_spec.rb
         
     | 
| 
      
 278 
     | 
    
         
            +
            - spec/rubocop/cops/style/access_control_spec.rb
         
     | 
| 
      
 279 
     | 
    
         
            +
            - spec/rubocop/cops/style/alias_spec.rb
         
     | 
| 
      
 280 
     | 
    
         
            +
            - spec/rubocop/cops/style/align_parameters_spec.rb
         
     | 
| 
      
 281 
     | 
    
         
            +
            - spec/rubocop/cops/style/and_or_spec.rb
         
     | 
| 
      
 282 
     | 
    
         
            +
            - spec/rubocop/cops/style/ascii_comments_spec.rb
         
     | 
| 
      
 283 
     | 
    
         
            +
            - spec/rubocop/cops/style/ascii_identifiers_spec.rb
         
     | 
| 
      
 284 
     | 
    
         
            +
            - spec/rubocop/cops/style/attr_spec.rb
         
     | 
| 
      
 285 
     | 
    
         
            +
            - spec/rubocop/cops/style/avoid_class_vars_spec.rb
         
     | 
| 
      
 286 
     | 
    
         
            +
            - spec/rubocop/cops/style/avoid_for_spec.rb
         
     | 
| 
      
 287 
     | 
    
         
            +
            - spec/rubocop/cops/style/avoid_global_vars_spec.rb
         
     | 
| 
      
 288 
     | 
    
         
            +
            - spec/rubocop/cops/style/avoid_perl_backrefs_spec.rb
         
     | 
| 
      
 289 
     | 
    
         
            +
            - spec/rubocop/cops/style/avoid_perlisms_spec.rb
         
     | 
| 
      
 290 
     | 
    
         
            +
            - spec/rubocop/cops/style/begin_block_spec.rb
         
     | 
| 
      
 291 
     | 
    
         
            +
            - spec/rubocop/cops/style/block_comments_spec.rb
         
     | 
| 
      
 292 
     | 
    
         
            +
            - spec/rubocop/cops/style/block_nesting_spec.rb
         
     | 
| 
      
 293 
     | 
    
         
            +
            - spec/rubocop/cops/style/blocks_spec.rb
         
     | 
| 
      
 294 
     | 
    
         
            +
            - spec/rubocop/cops/style/case_equality_spec.rb
         
     | 
| 
      
 295 
     | 
    
         
            +
            - spec/rubocop/cops/style/case_indentation_spec.rb
         
     | 
| 
      
 296 
     | 
    
         
            +
            - spec/rubocop/cops/style/character_literal_spec.rb
         
     | 
| 
      
 297 
     | 
    
         
            +
            - spec/rubocop/cops/style/class_and_module_camel_case_spec.rb
         
     | 
| 
      
 298 
     | 
    
         
            +
            - spec/rubocop/cops/style/class_methods_spec.rb
         
     | 
| 
      
 299 
     | 
    
         
            +
            - spec/rubocop/cops/style/collection_methods_spec.rb
         
     | 
| 
      
 300 
     | 
    
         
            +
            - spec/rubocop/cops/style/colon_method_call_spec.rb
         
     | 
| 
      
 301 
     | 
    
         
            +
            - spec/rubocop/cops/style/constant_name_spec.rb
         
     | 
| 
      
 302 
     | 
    
         
            +
            - spec/rubocop/cops/style/def_with_parentheses_spec.rb
         
     | 
| 
      
 303 
     | 
    
         
            +
            - spec/rubocop/cops/style/def_without_parentheses_spec.rb
         
     | 
| 
      
 304 
     | 
    
         
            +
            - spec/rubocop/cops/style/documentation_spec.rb
         
     | 
| 
      
 305 
     | 
    
         
            +
            - spec/rubocop/cops/style/dot_position_spec.rb
         
     | 
| 
      
 306 
     | 
    
         
            +
            - spec/rubocop/cops/style/empty_line_between_defs_spec.rb
         
     | 
| 
      
 307 
     | 
    
         
            +
            - spec/rubocop/cops/style/empty_lines_spec.rb
         
     | 
| 
      
 308 
     | 
    
         
            +
            - spec/rubocop/cops/style/empty_literal_spec.rb
         
     | 
| 
      
 309 
     | 
    
         
            +
            - spec/rubocop/cops/style/encoding_spec.rb
         
     | 
| 
      
 310 
     | 
    
         
            +
            - spec/rubocop/cops/style/end_block_spec.rb
         
     | 
| 
      
 311 
     | 
    
         
            +
            - spec/rubocop/cops/style/end_of_line_spec.rb
         
     | 
| 
      
 312 
     | 
    
         
            +
            - spec/rubocop/cops/style/favor_join_spec.rb
         
     | 
| 
      
 313 
     | 
    
         
            +
            - spec/rubocop/cops/style/favor_modifier_spec.rb
         
     | 
| 
      
 314 
     | 
    
         
            +
            - spec/rubocop/cops/style/favor_sprintf_spec.rb
         
     | 
| 
      
 315 
     | 
    
         
            +
            - spec/rubocop/cops/style/favor_unless_over_negated_if_spec.rb
         
     | 
| 
      
 316 
     | 
    
         
            +
            - spec/rubocop/cops/style/favor_until_over_negated_while_spec.rb
         
     | 
| 
      
 317 
     | 
    
         
            +
            - spec/rubocop/cops/style/hash_syntax_spec.rb
         
     | 
| 
      
 318 
     | 
    
         
            +
            - spec/rubocop/cops/style/if_with_semicolon_spec.rb
         
     | 
| 
      
 319 
     | 
    
         
            +
            - spec/rubocop/cops/style/lambda_spec.rb
         
     | 
| 
      
 320 
     | 
    
         
            +
            - spec/rubocop/cops/style/leading_comment_space_spec.rb
         
     | 
| 
      
 321 
     | 
    
         
            +
            - spec/rubocop/cops/style/line_continuation_spec.rb
         
     | 
| 
      
 322 
     | 
    
         
            +
            - spec/rubocop/cops/style/line_length_spec.rb
         
     | 
| 
      
 323 
     | 
    
         
            +
            - spec/rubocop/cops/style/method_and_variable_snake_case_spec.rb
         
     | 
| 
      
 324 
     | 
    
         
            +
            - spec/rubocop/cops/style/method_call_parentheses_spec.rb
         
     | 
| 
      
 325 
     | 
    
         
            +
            - spec/rubocop/cops/style/method_length_spec.rb
         
     | 
| 
      
 326 
     | 
    
         
            +
            - spec/rubocop/cops/style/multiline_if_then_spec.rb
         
     | 
| 
      
 327 
     | 
    
         
            +
            - spec/rubocop/cops/style/not_spec.rb
         
     | 
| 
      
 328 
     | 
    
         
            +
            - spec/rubocop/cops/style/numeric_literals_spec.rb
         
     | 
| 
      
 329 
     | 
    
         
            +
            - spec/rubocop/cops/style/one_line_conditional_spec.rb
         
     | 
| 
      
 330 
     | 
    
         
            +
            - spec/rubocop/cops/style/op_method_spec.rb
         
     | 
| 
      
 331 
     | 
    
         
            +
            - spec/rubocop/cops/style/parameter_lists_spec.rb
         
     | 
| 
      
 332 
     | 
    
         
            +
            - spec/rubocop/cops/style/parentheses_around_condition_spec.rb
         
     | 
| 
      
 333 
     | 
    
         
            +
            - spec/rubocop/cops/style/proc_spec.rb
         
     | 
| 
      
 334 
     | 
    
         
            +
            - spec/rubocop/cops/style/reduce_arguments_spec.rb
         
     | 
| 
      
 335 
     | 
    
         
            +
            - spec/rubocop/cops/style/regexp_literal_spec.rb
         
     | 
| 
      
 336 
     | 
    
         
            +
            - spec/rubocop/cops/style/rescue_modifier_spec.rb
         
     | 
| 
      
 337 
     | 
    
         
            +
            - spec/rubocop/cops/style/semicolon_spec.rb
         
     | 
| 
      
 338 
     | 
    
         
            +
            - spec/rubocop/cops/style/single_line_methods_spec.rb
         
     | 
| 
      
 339 
     | 
    
         
            +
            - spec/rubocop/cops/style/space_after_colon_spec.rb
         
     | 
| 
      
 340 
     | 
    
         
            +
            - spec/rubocop/cops/style/space_after_comma_spec.rb
         
     | 
| 
      
 341 
     | 
    
         
            +
            - spec/rubocop/cops/style/space_after_control_keyword_spec.rb
         
     | 
| 
      
 342 
     | 
    
         
            +
            - spec/rubocop/cops/style/space_after_semicolon_spec.rb
         
     | 
| 
      
 343 
     | 
    
         
            +
            - spec/rubocop/cops/style/space_around_braces_spec.rb
         
     | 
| 
      
 344 
     | 
    
         
            +
            - spec/rubocop/cops/style/space_around_equals_in_default_parameter_spec.rb
         
     | 
| 
      
 345 
     | 
    
         
            +
            - spec/rubocop/cops/style/space_around_operators_spec.rb
         
     | 
| 
      
 346 
     | 
    
         
            +
            - spec/rubocop/cops/style/space_inside_brackets_spec.rb
         
     | 
| 
      
 347 
     | 
    
         
            +
            - spec/rubocop/cops/style/space_inside_hash_literal_braces_spec.rb
         
     | 
| 
      
 348 
     | 
    
         
            +
            - spec/rubocop/cops/style/space_inside_parens_spec.rb
         
     | 
| 
      
 349 
     | 
    
         
            +
            - spec/rubocop/cops/style/string_literals_spec.rb
         
     | 
| 
      
 350 
     | 
    
         
            +
            - spec/rubocop/cops/style/symbol_array_spec.rb
         
     | 
| 
      
 351 
     | 
    
         
            +
            - spec/rubocop/cops/style/symbol_name_spec.rb
         
     | 
| 
      
 352 
     | 
    
         
            +
            - spec/rubocop/cops/style/tab_spec.rb
         
     | 
| 
      
 353 
     | 
    
         
            +
            - spec/rubocop/cops/style/ternary_operator_spec.rb
         
     | 
| 
      
 354 
     | 
    
         
            +
            - spec/rubocop/cops/style/trailing_whitespace_spec.rb
         
     | 
| 
      
 355 
     | 
    
         
            +
            - spec/rubocop/cops/style/trivial_accessors_spec.rb
         
     | 
| 
      
 356 
     | 
    
         
            +
            - spec/rubocop/cops/style/unless_else_spec.rb
         
     | 
| 
      
 357 
     | 
    
         
            +
            - spec/rubocop/cops/style/variable_interpolation_spec.rb
         
     | 
| 
      
 358 
     | 
    
         
            +
            - spec/rubocop/cops/style/when_then_spec.rb
         
     | 
| 
      
 359 
     | 
    
         
            +
            - spec/rubocop/cops/style/while_until_do_spec.rb
         
     | 
| 
      
 360 
     | 
    
         
            +
            - spec/rubocop/cops/style/word_array_spec.rb
         
     | 
| 
      
 361 
     | 
    
         
            +
            - spec/rubocop/cops/variable_inspector_spec.rb
         
     | 
| 
      
 362 
     | 
    
         
            +
            - spec/rubocop/formatter/base_formatter_spec.rb
         
     | 
| 
      
 363 
     | 
    
         
            +
            - spec/rubocop/formatter/clang_style_formatter_spec.rb
         
     | 
| 
      
 364 
     | 
    
         
            +
            - spec/rubocop/formatter/emacs_style_formatter_spec.rb
         
     | 
| 
      
 365 
     | 
    
         
            +
            - spec/rubocop/formatter/formatter_set_spec.rb
         
     | 
| 
      
 366 
     | 
    
         
            +
            - spec/rubocop/formatter/json_formatter_spec.rb
         
     | 
| 
      
 367 
     | 
    
         
            +
            - spec/rubocop/formatter/progress_formatter_spec.rb
         
     | 
| 
      
 368 
     | 
    
         
            +
            - spec/rubocop/formatter/simple_text_formatter_spec.rb
         
     | 
| 
      
 369 
     | 
    
         
            +
            - spec/spec_helper.rb
         
     | 
| 
      
 370 
     | 
    
         
            +
            - spec/support/file_helper.rb
         
     | 
| 
      
 371 
     | 
    
         
            +
            - spec/support/isolated_environment.rb
         
     | 
| 
      
 372 
     | 
    
         
            +
            - spec/support/mri_syntax_checker.rb
         
     | 
| 
      
 373 
     | 
    
         
            +
            - spec/support/shared_examples.rb
         
     | 
| 
      
 374 
     | 
    
         
            +
            homepage: http://github.com/sabat/rubocop
         
     | 
| 
      
 375 
     | 
    
         
            +
            licenses:
         
     | 
| 
      
 376 
     | 
    
         
            +
            - MIT
         
     | 
| 
      
 377 
     | 
    
         
            +
            post_install_message: 
         
     | 
| 
      
 378 
     | 
    
         
            +
            rdoc_options: []
         
     | 
| 
      
 379 
     | 
    
         
            +
            require_paths:
         
     | 
| 
      
 380 
     | 
    
         
            +
            - lib
         
     | 
| 
      
 381 
     | 
    
         
            +
            required_ruby_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 382 
     | 
    
         
            +
              none: false
         
     | 
| 
      
 383 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 384 
     | 
    
         
            +
              - - ! '>='
         
     | 
| 
      
 385 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 386 
     | 
    
         
            +
                  version: 1.9.2
         
     | 
| 
      
 387 
     | 
    
         
            +
            required_rubygems_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 388 
     | 
    
         
            +
              none: false
         
     | 
| 
      
 389 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 390 
     | 
    
         
            +
              - - ! '>='
         
     | 
| 
      
 391 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 392 
     | 
    
         
            +
                  version: '0'
         
     | 
| 
      
 393 
     | 
    
         
            +
            requirements: []
         
     | 
| 
      
 394 
     | 
    
         
            +
            rubyforge_project: 
         
     | 
| 
      
 395 
     | 
    
         
            +
            rubygems_version: 1.8.25
         
     | 
| 
      
 396 
     | 
    
         
            +
            signing_key: 
         
     | 
| 
      
 397 
     | 
    
         
            +
            specification_version: 3
         
     | 
| 
      
 398 
     | 
    
         
            +
            summary: Automatic Ruby code style checking tool.
         
     | 
| 
      
 399 
     | 
    
         
            +
            test_files:
         
     | 
| 
      
 400 
     | 
    
         
            +
            - spec/.rubocop.yml
         
     | 
| 
      
 401 
     | 
    
         
            +
            - spec/project_spec.rb
         
     | 
| 
      
 402 
     | 
    
         
            +
            - spec/rubocop/cli_spec.rb
         
     | 
| 
      
 403 
     | 
    
         
            +
            - spec/rubocop/config_spec.rb
         
     | 
| 
      
 404 
     | 
    
         
            +
            - spec/rubocop/config_store_spec.rb
         
     | 
| 
      
 405 
     | 
    
         
            +
            - spec/rubocop/cops/cop_spec.rb
         
     | 
| 
      
 406 
     | 
    
         
            +
            - spec/rubocop/cops/lint/assignment_in_condition_spec.rb
         
     | 
| 
      
 407 
     | 
    
         
            +
            - spec/rubocop/cops/lint/end_alignment_spec.rb
         
     | 
| 
      
 408 
     | 
    
         
            +
            - spec/rubocop/cops/lint/end_in_method_spec.rb
         
     | 
| 
      
 409 
     | 
    
         
            +
            - spec/rubocop/cops/lint/ensure_return_spec.rb
         
     | 
| 
      
 410 
     | 
    
         
            +
            - spec/rubocop/cops/lint/eval_spec.rb
         
     | 
| 
      
 411 
     | 
    
         
            +
            - spec/rubocop/cops/lint/handle_exceptions_spec.rb
         
     | 
| 
      
 412 
     | 
    
         
            +
            - spec/rubocop/cops/lint/literal_in_condition_spec.rb
         
     | 
| 
      
 413 
     | 
    
         
            +
            - spec/rubocop/cops/lint/loop_spec.rb
         
     | 
| 
      
 414 
     | 
    
         
            +
            - spec/rubocop/cops/lint/rescue_exception_spec.rb
         
     | 
| 
      
 415 
     | 
    
         
            +
            - spec/rubocop/cops/lint/shadowing_outer_local_variable_spec.rb
         
     | 
| 
      
 416 
     | 
    
         
            +
            - spec/rubocop/cops/lint/unreachable_code_spec.rb
         
     | 
| 
      
 417 
     | 
    
         
            +
            - spec/rubocop/cops/lint/unused_local_variable_spec.rb
         
     | 
| 
      
 418 
     | 
    
         
            +
            - spec/rubocop/cops/lint/void_spec.rb
         
     | 
| 
      
 419 
     | 
    
         
            +
            - spec/rubocop/cops/offence_spec.rb
         
     | 
| 
      
 420 
     | 
    
         
            +
            - spec/rubocop/cops/rails/validation_spec.rb
         
     | 
| 
      
 421 
     | 
    
         
            +
            - spec/rubocop/cops/style/access_control_spec.rb
         
     | 
| 
      
 422 
     | 
    
         
            +
            - spec/rubocop/cops/style/alias_spec.rb
         
     | 
| 
      
 423 
     | 
    
         
            +
            - spec/rubocop/cops/style/align_parameters_spec.rb
         
     | 
| 
      
 424 
     | 
    
         
            +
            - spec/rubocop/cops/style/and_or_spec.rb
         
     | 
| 
      
 425 
     | 
    
         
            +
            - spec/rubocop/cops/style/ascii_comments_spec.rb
         
     | 
| 
      
 426 
     | 
    
         
            +
            - spec/rubocop/cops/style/ascii_identifiers_spec.rb
         
     | 
| 
      
 427 
     | 
    
         
            +
            - spec/rubocop/cops/style/attr_spec.rb
         
     | 
| 
      
 428 
     | 
    
         
            +
            - spec/rubocop/cops/style/avoid_class_vars_spec.rb
         
     | 
| 
      
 429 
     | 
    
         
            +
            - spec/rubocop/cops/style/avoid_for_spec.rb
         
     | 
| 
      
 430 
     | 
    
         
            +
            - spec/rubocop/cops/style/avoid_global_vars_spec.rb
         
     | 
| 
      
 431 
     | 
    
         
            +
            - spec/rubocop/cops/style/avoid_perl_backrefs_spec.rb
         
     | 
| 
      
 432 
     | 
    
         
            +
            - spec/rubocop/cops/style/avoid_perlisms_spec.rb
         
     | 
| 
      
 433 
     | 
    
         
            +
            - spec/rubocop/cops/style/begin_block_spec.rb
         
     | 
| 
      
 434 
     | 
    
         
            +
            - spec/rubocop/cops/style/block_comments_spec.rb
         
     | 
| 
      
 435 
     | 
    
         
            +
            - spec/rubocop/cops/style/block_nesting_spec.rb
         
     | 
| 
      
 436 
     | 
    
         
            +
            - spec/rubocop/cops/style/blocks_spec.rb
         
     | 
| 
      
 437 
     | 
    
         
            +
            - spec/rubocop/cops/style/case_equality_spec.rb
         
     | 
| 
      
 438 
     | 
    
         
            +
            - spec/rubocop/cops/style/case_indentation_spec.rb
         
     | 
| 
      
 439 
     | 
    
         
            +
            - spec/rubocop/cops/style/character_literal_spec.rb
         
     | 
| 
      
 440 
     | 
    
         
            +
            - spec/rubocop/cops/style/class_and_module_camel_case_spec.rb
         
     | 
| 
      
 441 
     | 
    
         
            +
            - spec/rubocop/cops/style/class_methods_spec.rb
         
     | 
| 
      
 442 
     | 
    
         
            +
            - spec/rubocop/cops/style/collection_methods_spec.rb
         
     | 
| 
      
 443 
     | 
    
         
            +
            - spec/rubocop/cops/style/colon_method_call_spec.rb
         
     | 
| 
      
 444 
     | 
    
         
            +
            - spec/rubocop/cops/style/constant_name_spec.rb
         
     | 
| 
      
 445 
     | 
    
         
            +
            - spec/rubocop/cops/style/def_with_parentheses_spec.rb
         
     | 
| 
      
 446 
     | 
    
         
            +
            - spec/rubocop/cops/style/def_without_parentheses_spec.rb
         
     | 
| 
      
 447 
     | 
    
         
            +
            - spec/rubocop/cops/style/documentation_spec.rb
         
     | 
| 
      
 448 
     | 
    
         
            +
            - spec/rubocop/cops/style/dot_position_spec.rb
         
     | 
| 
      
 449 
     | 
    
         
            +
            - spec/rubocop/cops/style/empty_line_between_defs_spec.rb
         
     | 
| 
      
 450 
     | 
    
         
            +
            - spec/rubocop/cops/style/empty_lines_spec.rb
         
     | 
| 
      
 451 
     | 
    
         
            +
            - spec/rubocop/cops/style/empty_literal_spec.rb
         
     | 
| 
      
 452 
     | 
    
         
            +
            - spec/rubocop/cops/style/encoding_spec.rb
         
     | 
| 
      
 453 
     | 
    
         
            +
            - spec/rubocop/cops/style/end_block_spec.rb
         
     | 
| 
      
 454 
     | 
    
         
            +
            - spec/rubocop/cops/style/end_of_line_spec.rb
         
     | 
| 
      
 455 
     | 
    
         
            +
            - spec/rubocop/cops/style/favor_join_spec.rb
         
     | 
| 
      
 456 
     | 
    
         
            +
            - spec/rubocop/cops/style/favor_modifier_spec.rb
         
     | 
| 
      
 457 
     | 
    
         
            +
            - spec/rubocop/cops/style/favor_sprintf_spec.rb
         
     | 
| 
      
 458 
     | 
    
         
            +
            - spec/rubocop/cops/style/favor_unless_over_negated_if_spec.rb
         
     | 
| 
      
 459 
     | 
    
         
            +
            - spec/rubocop/cops/style/favor_until_over_negated_while_spec.rb
         
     | 
| 
      
 460 
     | 
    
         
            +
            - spec/rubocop/cops/style/hash_syntax_spec.rb
         
     | 
| 
      
 461 
     | 
    
         
            +
            - spec/rubocop/cops/style/if_with_semicolon_spec.rb
         
     | 
| 
      
 462 
     | 
    
         
            +
            - spec/rubocop/cops/style/lambda_spec.rb
         
     | 
| 
      
 463 
     | 
    
         
            +
            - spec/rubocop/cops/style/leading_comment_space_spec.rb
         
     | 
| 
      
 464 
     | 
    
         
            +
            - spec/rubocop/cops/style/line_continuation_spec.rb
         
     | 
| 
      
 465 
     | 
    
         
            +
            - spec/rubocop/cops/style/line_length_spec.rb
         
     | 
| 
      
 466 
     | 
    
         
            +
            - spec/rubocop/cops/style/method_and_variable_snake_case_spec.rb
         
     | 
| 
      
 467 
     | 
    
         
            +
            - spec/rubocop/cops/style/method_call_parentheses_spec.rb
         
     | 
| 
      
 468 
     | 
    
         
            +
            - spec/rubocop/cops/style/method_length_spec.rb
         
     | 
| 
      
 469 
     | 
    
         
            +
            - spec/rubocop/cops/style/multiline_if_then_spec.rb
         
     | 
| 
      
 470 
     | 
    
         
            +
            - spec/rubocop/cops/style/not_spec.rb
         
     | 
| 
      
 471 
     | 
    
         
            +
            - spec/rubocop/cops/style/numeric_literals_spec.rb
         
     | 
| 
      
 472 
     | 
    
         
            +
            - spec/rubocop/cops/style/one_line_conditional_spec.rb
         
     | 
| 
      
 473 
     | 
    
         
            +
            - spec/rubocop/cops/style/op_method_spec.rb
         
     | 
| 
      
 474 
     | 
    
         
            +
            - spec/rubocop/cops/style/parameter_lists_spec.rb
         
     | 
| 
      
 475 
     | 
    
         
            +
            - spec/rubocop/cops/style/parentheses_around_condition_spec.rb
         
     | 
| 
      
 476 
     | 
    
         
            +
            - spec/rubocop/cops/style/proc_spec.rb
         
     | 
| 
      
 477 
     | 
    
         
            +
            - spec/rubocop/cops/style/reduce_arguments_spec.rb
         
     | 
| 
      
 478 
     | 
    
         
            +
            - spec/rubocop/cops/style/regexp_literal_spec.rb
         
     | 
| 
      
 479 
     | 
    
         
            +
            - spec/rubocop/cops/style/rescue_modifier_spec.rb
         
     | 
| 
      
 480 
     | 
    
         
            +
            - spec/rubocop/cops/style/semicolon_spec.rb
         
     | 
| 
      
 481 
     | 
    
         
            +
            - spec/rubocop/cops/style/single_line_methods_spec.rb
         
     | 
| 
      
 482 
     | 
    
         
            +
            - spec/rubocop/cops/style/space_after_colon_spec.rb
         
     | 
| 
      
 483 
     | 
    
         
            +
            - spec/rubocop/cops/style/space_after_comma_spec.rb
         
     | 
| 
      
 484 
     | 
    
         
            +
            - spec/rubocop/cops/style/space_after_control_keyword_spec.rb
         
     | 
| 
      
 485 
     | 
    
         
            +
            - spec/rubocop/cops/style/space_after_semicolon_spec.rb
         
     | 
| 
      
 486 
     | 
    
         
            +
            - spec/rubocop/cops/style/space_around_braces_spec.rb
         
     | 
| 
      
 487 
     | 
    
         
            +
            - spec/rubocop/cops/style/space_around_equals_in_default_parameter_spec.rb
         
     | 
| 
      
 488 
     | 
    
         
            +
            - spec/rubocop/cops/style/space_around_operators_spec.rb
         
     | 
| 
      
 489 
     | 
    
         
            +
            - spec/rubocop/cops/style/space_inside_brackets_spec.rb
         
     | 
| 
      
 490 
     | 
    
         
            +
            - spec/rubocop/cops/style/space_inside_hash_literal_braces_spec.rb
         
     | 
| 
      
 491 
     | 
    
         
            +
            - spec/rubocop/cops/style/space_inside_parens_spec.rb
         
     | 
| 
      
 492 
     | 
    
         
            +
            - spec/rubocop/cops/style/string_literals_spec.rb
         
     | 
| 
      
 493 
     | 
    
         
            +
            - spec/rubocop/cops/style/symbol_array_spec.rb
         
     | 
| 
      
 494 
     | 
    
         
            +
            - spec/rubocop/cops/style/symbol_name_spec.rb
         
     | 
| 
      
 495 
     | 
    
         
            +
            - spec/rubocop/cops/style/tab_spec.rb
         
     | 
| 
      
 496 
     | 
    
         
            +
            - spec/rubocop/cops/style/ternary_operator_spec.rb
         
     | 
| 
      
 497 
     | 
    
         
            +
            - spec/rubocop/cops/style/trailing_whitespace_spec.rb
         
     | 
| 
      
 498 
     | 
    
         
            +
            - spec/rubocop/cops/style/trivial_accessors_spec.rb
         
     | 
| 
      
 499 
     | 
    
         
            +
            - spec/rubocop/cops/style/unless_else_spec.rb
         
     | 
| 
      
 500 
     | 
    
         
            +
            - spec/rubocop/cops/style/variable_interpolation_spec.rb
         
     | 
| 
      
 501 
     | 
    
         
            +
            - spec/rubocop/cops/style/when_then_spec.rb
         
     | 
| 
      
 502 
     | 
    
         
            +
            - spec/rubocop/cops/style/while_until_do_spec.rb
         
     | 
| 
      
 503 
     | 
    
         
            +
            - spec/rubocop/cops/style/word_array_spec.rb
         
     | 
| 
      
 504 
     | 
    
         
            +
            - spec/rubocop/cops/variable_inspector_spec.rb
         
     | 
| 
      
 505 
     | 
    
         
            +
            - spec/rubocop/formatter/base_formatter_spec.rb
         
     | 
| 
      
 506 
     | 
    
         
            +
            - spec/rubocop/formatter/clang_style_formatter_spec.rb
         
     | 
| 
      
 507 
     | 
    
         
            +
            - spec/rubocop/formatter/emacs_style_formatter_spec.rb
         
     | 
| 
      
 508 
     | 
    
         
            +
            - spec/rubocop/formatter/formatter_set_spec.rb
         
     | 
| 
      
 509 
     | 
    
         
            +
            - spec/rubocop/formatter/json_formatter_spec.rb
         
     | 
| 
      
 510 
     | 
    
         
            +
            - spec/rubocop/formatter/progress_formatter_spec.rb
         
     | 
| 
      
 511 
     | 
    
         
            +
            - spec/rubocop/formatter/simple_text_formatter_spec.rb
         
     | 
| 
      
 512 
     | 
    
         
            +
            - spec/spec_helper.rb
         
     | 
| 
      
 513 
     | 
    
         
            +
            - spec/support/file_helper.rb
         
     | 
| 
      
 514 
     | 
    
         
            +
            - spec/support/isolated_environment.rb
         
     | 
| 
      
 515 
     | 
    
         
            +
            - spec/support/mri_syntax_checker.rb
         
     | 
| 
      
 516 
     | 
    
         
            +
            - spec/support/shared_examples.rb
         
     | 
| 
      
 517 
     | 
    
         
            +
            has_rdoc: 
         
     |