[DRE-commits] [rubocop] branch master updated (bb2f3c0 -> c1e8886)

Miguel Landaeta nomadium at moszumanska.debian.org
Sun Mar 26 18:46:08 UTC 2017


This is an automated email from the git hooks/post-receive script.

nomadium pushed a change to branch master
in repository rubocop.

      from  bb2f3c0   Upload to unstable
      adds  63b424d   Imported Upstream version 0.48.0+dfsg
       new  f142fe8   Merge tag 'upstream/0.48.0+dfsg'
       new  c1e8886   Upload to unstable

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/PULL_REQUEST_TEMPLATE.md                   |    2 +-
 .gitignore                                         |    7 +-
 .rspec                                             |    1 +
 .rubocop.yml                                       |   11 +-
 .rubocop_todo.yml                                  |   12 +-
 .travis.yml                                        |    8 +-
 CHANGELOG.md                                       |   99 ++
 README.md                                          |   44 +-
 Rakefile                                           |    4 +-
 config/default.yml                                 |  318 ++++--
 config/disabled.yml                                |    5 -
 config/enabled.yml                                 |  100 +-
 debian/changelog                                   |    6 +
 lib/rubocop.rb                                     |   25 +-
 lib/rubocop/ast/builder.rb                         |    9 +-
 lib/rubocop/ast/node.rb                            |   43 +-
 lib/rubocop/ast/node/and_node.rb                   |   37 +
 lib/rubocop/ast/node/array_node.rb                 |    5 +-
 lib/rubocop/ast/node/case_node.rb                  |    1 +
 lib/rubocop/ast/node/ensure_node.rb                |   25 +
 lib/rubocop/ast/node/hash_node.rb                  |   13 +-
 lib/rubocop/ast/node/if_node.rb                    |    2 +
 lib/rubocop/ast/node/mixin/binary_operator_node.rb |   23 +
 .../ast/node/mixin/predicate_operator_node.rb      |   35 +
 lib/rubocop/ast/node/or_node.rb                    |   37 +
 lib/rubocop/ast/node/resbody_node.rb               |   25 +
 lib/rubocop/ast/node/send_node.rb                  |  190 ++++
 lib/rubocop/ast/node/when_node.rb                  |    2 +-
 lib/rubocop/ast/traversal.rb                       |   30 +-
 lib/rubocop/comment_config.rb                      |    2 +-
 lib/rubocop/config.rb                              |   54 +-
 lib/rubocop/config_loader.rb                       |   47 +-
 lib/rubocop/cop/bundler/ordered_gems.rb            |   27 +-
 lib/rubocop/cop/commissioner.rb                    |    4 +
 lib/rubocop/cop/cop.rb                             |    5 +
 .../cop/lint/ambiguous_block_association.rb        |   53 +
 lib/rubocop/cop/lint/debugger.rb                   |    9 +-
 lib/rubocop/cop/lint/def_end_alignment.rb          |    3 +-
 lib/rubocop/cop/lint/deprecated_class_methods.rb   |    6 +-
 lib/rubocop/cop/lint/duplicate_case_condition.rb   |    2 +-
 lib/rubocop/cop/lint/each_with_object_argument.rb  |    4 +-
 lib/rubocop/cop/lint/empty_ensure.rb               |    8 +-
 lib/rubocop/cop/lint/ensure_return.rb              |    2 +-
 lib/rubocop/cop/lint/format_parameter_mismatch.rb  |   38 +-
 lib/rubocop/cop/lint/handle_exceptions.rb          |    4 +-
 lib/rubocop/cop/lint/literal_in_condition.rb       |    2 +-
 lib/rubocop/cop/lint/literal_in_interpolation.rb   |    2 +-
 lib/rubocop/cop/lint/multiple_compare.rb           |    8 +-
 .../cop/lint/non_local_exit_from_iterator.rb       |   44 +-
 .../cop/lint/parentheses_as_grouped_expression.rb  |   15 +-
 lib/rubocop/cop/lint/require_parentheses.rb        |   20 +-
 lib/rubocop/cop/lint/safe_navigation_chain.rb      |   10 +-
 lib/rubocop/cop/lint/shadowed_exception.rb         |    8 +-
 .../cop/lint/string_conversion_in_interpolation.rb |   15 +-
 lib/rubocop/cop/lint/unneeded_disable.rb           |   46 +-
 lib/rubocop/cop/lint/unneeded_splat_expansion.rb   |    2 +-
 lib/rubocop/cop/lint/unreachable_code.rb           |    7 +-
 lib/rubocop/cop/lint/unused_block_argument.rb      |   12 +-
 lib/rubocop/cop/lint/useless_assignment.rb         |    3 +-
 lib/rubocop/cop/lint/useless_comparison.rb         |    9 +-
 lib/rubocop/cop/lint/useless_setter_call.rb        |    2 +-
 lib/rubocop/cop/message_annotator.rb               |   10 +-
 lib/rubocop/cop/metrics/abc_size.rb                |    2 +-
 lib/rubocop/cop/metrics/block_nesting.rb           |    8 +-
 lib/rubocop/cop/metrics/cyclomatic_complexity.rb   |    4 +-
 lib/rubocop/cop/metrics/line_length.rb             |   11 +-
 lib/rubocop/cop/metrics/parameter_lists.rb         |    7 +-
 lib/rubocop/cop/metrics/perceived_complexity.rb    |    4 +-
 lib/rubocop/cop/mixin/access_modifier_node.rb      |    2 +-
 lib/rubocop/cop/mixin/array_hash_indentation.rb    |    4 +-
 lib/rubocop/cop/mixin/check_assignment.rb          |   12 +-
 lib/rubocop/cop/mixin/duplication.rb               |    2 +-
 lib/rubocop/cop/mixin/frozen_string_literal.rb     |    2 +-
 lib/rubocop/cop/mixin/ignored_pattern.rb           |   27 +
 lib/rubocop/cop/mixin/method_preference.rb         |    2 +
 .../cop/mixin/multiline_expression_indentation.rb  |   46 +-
 lib/rubocop/cop/mixin/on_method_def.rb             |    6 +-
 lib/rubocop/cop/mixin/percent_literal.rb           |   27 +
 lib/rubocop/cop/mixin/rescue_node.rb               |   21 +
 lib/rubocop/cop/mixin/safe_mode.rb                 |    2 +-
 lib/rubocop/cop/mixin/space_after_punctuation.rb   |    2 +-
 lib/rubocop/cop/mixin/statement_modifier.rb        |    3 +-
 lib/rubocop/cop/mixin/target_rails_version.rb      |   16 +
 lib/rubocop/cop/mixin/unused_argument.rb           |    2 +-
 lib/rubocop/cop/offense.rb                         |    6 +-
 lib/rubocop/cop/performance/casecmp.rb             |    2 +-
 lib/rubocop/cop/performance/detect.rb              |    3 +-
 .../cop/performance/double_start_end_with.rb       |   36 +-
 lib/rubocop/cop/performance/end_with.rb            |    4 +-
 lib/rubocop/cop/performance/flat_map.rb            |   12 +-
 lib/rubocop/cop/performance/lstrip_rstrip.rb       |    4 +-
 lib/rubocop/cop/performance/range_include.rb       |    4 +-
 lib/rubocop/cop/performance/redundant_match.rb     |   11 +-
 lib/rubocop/cop/performance/regexp_match.rb        |   13 +-
 lib/rubocop/cop/performance/reverse_each.rb        |    3 +-
 lib/rubocop/cop/performance/size.rb                |   17 +-
 lib/rubocop/cop/performance/start_with.rb          |    4 +-
 lib/rubocop/cop/performance/string_replacement.rb  |   31 +-
 lib/rubocop/cop/performance/times_map.rb           |    8 +-
 lib/rubocop/cop/rails/action_filter.rb             |   84 +-
 lib/rubocop/cop/rails/active_support_aliases.rb    |   68 ++
 lib/rubocop/cop/rails/blank.rb                     |  131 +++
 lib/rubocop/cop/rails/date.rb                      |   53 +-
 lib/rubocop/cop/rails/delegate_allow_blank.rb      |   12 +-
 lib/rubocop/cop/rails/dynamic_find_by.rb           |   10 +-
 lib/rubocop/cop/rails/exit.rb                      |   18 +-
 lib/rubocop/cop/rails/file_path.rb                 |   19 +-
 lib/rubocop/cop/rails/find_by.rb                   |   18 +-
 lib/rubocop/cop/rails/find_each.rb                 |   15 +-
 lib/rubocop/cop/rails/has_and_belongs_to_many.rb   |    1 +
 lib/rubocop/cop/rails/http_positional_arguments.rb |   22 +-
 lib/rubocop/cop/rails/output.rb                    |    8 +-
 lib/rubocop/cop/rails/output_safety.rb             |   12 +-
 lib/rubocop/cop/rails/pluralization_grammar.rb     |   49 +-
 lib/rubocop/cop/rails/present.rb                   |  137 +++
 lib/rubocop/cop/rails/read_write_attribute.rb      |   27 +-
 lib/rubocop/cop/rails/relative_date_constant.rb    |   53 +
 lib/rubocop/cop/rails/request_referer.rb           |   11 +-
 lib/rubocop/cop/rails/reversible_migration.rb      |    3 +-
 lib/rubocop/cop/rails/safe_navigation.rb           |    3 +-
 lib/rubocop/cop/rails/save_bang.rb                 |   20 +-
 lib/rubocop/cop/rails/skips_model_validations.rb   |   29 +-
 lib/rubocop/cop/rails/time_zone.rb                 |   38 +-
 lib/rubocop/cop/rails/uniq_before_pluck.rb         |    5 +-
 lib/rubocop/cop/rails/validation.rb                |   19 +-
 lib/rubocop/cop/registry.rb                        |    6 +-
 lib/rubocop/cop/security/json_load.rb              |    2 +-
 lib/rubocop/cop/security/marshal_load.rb           |    6 +-
 lib/rubocop/cop/security/yaml_load.rb              |    6 +-
 lib/rubocop/cop/severity.rb                        |    2 +-
 lib/rubocop/cop/style/alias.rb                     |   10 +-
 lib/rubocop/cop/style/align_hash.rb                |    2 +-
 lib/rubocop/cop/style/align_parameters.rb          |   10 +-
 lib/rubocop/cop/style/and_or.rb                    |   47 +-
 lib/rubocop/cop/style/attr.rb                      |   22 +-
 lib/rubocop/cop/style/auto_resource_cleanup.rb     |   19 +-
 lib/rubocop/cop/style/block_delimiters.rb          |   24 +-
 .../cop/style/braces_around_hash_parameters.rb     |   42 +-
 lib/rubocop/cop/style/case_indentation.rb          |    2 +
 lib/rubocop/cop/style/class_and_module_children.rb |    2 +-
 lib/rubocop/cop/style/class_check.rb               |   12 +-
 .../cop/style/closing_parenthesis_indentation.rb   |    9 +-
 lib/rubocop/cop/style/collection_methods.rb        |   16 +-
 lib/rubocop/cop/style/colon_method_call.rb         |   11 +-
 lib/rubocop/cop/style/conditional_assignment.rb    |   83 +-
 lib/rubocop/cop/style/constant_name.rb             |    2 +-
 lib/rubocop/cop/style/documentation_method.rb      |    1 +
 lib/rubocop/cop/style/dot_position.rb              |   10 +-
 lib/rubocop/cop/style/double_negation.rb           |    3 +-
 lib/rubocop/cop/style/each_with_object.rb          |    2 +-
 lib/rubocop/cop/style/empty_else.rb                |    4 +-
 .../cop/style/empty_line_after_magic_comment.rb    |   63 ++
 lib/rubocop/cop/style/empty_line_between_defs.rb   |   78 +-
 ...od_body.rb => empty_lines_around_begin_body.rb} |   17 +-
 ...pty_lines_around_exception_handling_keywords.rb |  127 +++
 lib/rubocop/cop/style/empty_literal.rb             |   26 +-
 lib/rubocop/cop/style/end_of_line.rb               |   28 +-
 lib/rubocop/cop/style/file_name.rb                 |    2 +-
 .../cop/style/first_method_argument_line_break.rb  |    2 +-
 .../cop/style/first_parameter_indentation.rb       |   36 +-
 lib/rubocop/cop/style/for.rb                       |    6 +-
 lib/rubocop/cop/style/format_string.rb             |    9 +-
 .../cop/style/frozen_string_literal_comment.rb     |    2 +-
 .../cop/style/identical_conditional_branches.rb    |   28 +-
 lib/rubocop/cop/style/if_unless_modifier.rb        |    4 +-
 lib/rubocop/cop/style/indent_assignment.rb         |    4 +-
 lib/rubocop/cop/style/indent_hash.rb               |    3 +-
 lib/rubocop/cop/style/indent_heredoc.rb            |  173 +++
 lib/rubocop/cop/style/indentation_width.rb         |   90 +-
 lib/rubocop/cop/style/inverse_methods.rb           |  130 +++
 lib/rubocop/cop/style/lambda_call.rb               |   26 +-
 lib/rubocop/cop/style/line_end_concatenation.rb    |    8 +-
 .../cop/style/method_call_with_args_parentheses.rb |   40 +-
 .../style/method_call_without_args_parentheses.rb  |   22 +-
 .../cop/style/method_called_on_do_end_block.rb     |    5 +-
 lib/rubocop/cop/style/missing_else.rb              |    7 +-
 lib/rubocop/cop/style/mixin_grouping.rb            |   97 ++
 lib/rubocop/cop/style/multiline_memoization.rb     |   43 +-
 .../style/multiline_method_call_brace_layout.rb    |    5 +-
 .../cop/style/multiline_method_call_indentation.rb |   57 +-
 lib/rubocop/cop/style/mutable_constant.rb          |    6 +-
 lib/rubocop/cop/style/negated_if.rb                |   74 +-
 .../cop/style/nested_parenthesized_calls.rb        |   40 +-
 lib/rubocop/cop/style/next.rb                      |   10 +-
 lib/rubocop/cop/style/non_nil_check.rb             |   17 +-
 lib/rubocop/cop/style/not.rb                       |    7 +-
 lib/rubocop/cop/style/numeric_literals.rb          |   28 +-
 lib/rubocop/cop/style/numeric_predicate.rb         |    2 +-
 lib/rubocop/cop/style/one_line_conditional.rb      |    4 +-
 lib/rubocop/cop/style/op_method.rb                 |    4 +-
 lib/rubocop/cop/style/parallel_assignment.rb       |    9 +-
 .../cop/style/percent_literal_delimiters.rb        |   58 +-
 lib/rubocop/cop/style/perl_backrefs.rb             |    2 +-
 lib/rubocop/cop/style/preferred_hash_methods.rb    |   18 +-
 lib/rubocop/cop/style/raise_args.rb                |   52 +-
 lib/rubocop/cop/style/redundant_freeze.rb          |   12 +-
 lib/rubocop/cop/style/redundant_parentheses.rb     |    5 +-
 lib/rubocop/cop/style/redundant_self.rb            |   52 +-
 lib/rubocop/cop/style/rescue_modifier.rb           |   16 +-
 lib/rubocop/cop/style/self_assignment.rb           |    6 +-
 lib/rubocop/cop/style/send.rb                      |    9 +-
 lib/rubocop/cop/style/space_after_not.rb           |   15 +-
 lib/rubocop/cop/style/space_around_keyword.rb      |   17 +-
 lib/rubocop/cop/style/space_around_operators.rb    |   34 +-
 lib/rubocop/cop/style/space_before_first_arg.rb    |   31 +-
 lib/rubocop/cop/style/space_inside_brackets.rb     |    2 +-
 .../cop/style/space_inside_hash_literal_braces.rb  |    6 +-
 lib/rubocop/cop/style/space_inside_parens.rb       |    2 +-
 lib/rubocop/cop/style/special_global_vars.rb       |   28 +-
 lib/rubocop/cop/style/stabby_lambda_parentheses.rb |    3 +-
 lib/rubocop/cop/style/string_literals.rb           |    2 +-
 lib/rubocop/cop/style/string_methods.rb            |   15 +-
 lib/rubocop/cop/style/struct_inheritance.rb        |   19 +-
 lib/rubocop/cop/style/symbol_array.rb              |   66 +-
 lib/rubocop/cop/style/symbol_proc.rb               |    4 +-
 lib/rubocop/cop/style/ternary_parentheses.rb       |   54 +-
 .../cop/style/trailing_comma_in_arguments.rb       |   15 +-
 .../cop/style/trailing_underscore_variable.rb      |    5 +-
 lib/rubocop/cop/style/trivial_accessors.rb         |    2 +-
 lib/rubocop/cop/style/unneeded_capital_w.rb        |    3 +-
 lib/rubocop/cop/style/unneeded_percent_q.rb        |    2 +-
 lib/rubocop/cop/style/word_array.rb                |   46 +-
 lib/rubocop/cop/style/zero_length_predicate.rb     |   15 +-
 lib/rubocop/cop/team.rb                            |    5 +-
 lib/rubocop/cop/util.rb                            |   59 +-
 lib/rubocop/cop/variable_force.rb                  |   26 +-
 lib/rubocop/cop/variable_force/assignment.rb       |    9 +-
 lib/rubocop/cop/variable_force/branch.rb           |  318 ++++++
 lib/rubocop/cop/variable_force/branchable.rb       |   21 +
 lib/rubocop/cop/variable_force/locatable.rb        |  200 ----
 lib/rubocop/cop/variable_force/reference.rb        |    4 +-
 lib/rubocop/cop/variable_force/scope.rb            |   56 +-
 lib/rubocop/cop/variable_force/variable.rb         |   17 +-
 lib/rubocop/formatter/colorizable.rb               |   20 +-
 lib/rubocop/formatter/formatter_set.rb             |    2 +-
 lib/rubocop/formatter/html_formatter.rb            |    3 +-
 lib/rubocop/formatter/simple_text_formatter.rb     |    6 +-
 lib/rubocop/magic_comment.rb                       |   26 +-
 lib/rubocop/options.rb                             |    2 +-
 lib/rubocop/platform.rb                            |   11 +
 lib/rubocop/processed_source.rb                    |    2 +-
 lib/rubocop/remote_config.rb                       |   24 +-
 lib/rubocop/result_cache.rb                        |   16 +-
 lib/rubocop/rspec/cop_helper.rb                    |    2 +
 lib/rubocop/rspec/shared_contexts.rb               |   20 +
 lib/rubocop/rspec/shared_examples.rb               |    2 +-
 lib/rubocop/runner.rb                              |    4 +-
 lib/rubocop/target_finder.rb                       |   70 +-
 lib/rubocop/version.rb                             |    6 +-
 manual/configuration.md                            |   16 +-
 manual/contributing.md                             |   18 +-
 manual/cops.md                                     |   11 +
 manual/cops_bundler.md                             |   11 +-
 manual/cops_lint.md                                |  126 ++-
 manual/cops_metrics.md                             |   25 +-
 manual/cops_performance.md                         |   81 +-
 manual/cops_rails.md                               |  206 +++-
 manual/cops_security.md                            |   21 +-
 manual/cops_style.md                               | 1152 ++++++++++++++++++--
 manual/extensions.md                               |    2 +
 manual/installation.md                             |    2 +-
 manual/integration_with_other_tools.md             |    6 +
 relnotes/v0.21.0.md                                |    1 -
 relnotes/v0.23.0.md                                |    1 -
 relnotes/v0.48.0.md                                |  327 ++++++
 spec/fixtures/html_formatter/expected.html         |   19 +-
 spec/isolated_environment_spec.rb                  |    2 -
 spec/project_spec.rb                               |   14 +-
 spec/rubocop/ast/and_node_spec.rb                  |  149 +++
 spec/rubocop/ast/array_node_spec.rb                |    2 -
 spec/rubocop/ast/case_node_spec.rb                 |    2 -
 spec/rubocop/ast/ensure_node_spec.rb               |   17 +
 spec/rubocop/ast/for_node_spec.rb                  |    2 -
 spec/rubocop/ast/hash_node_spec.rb                 |   22 +-
 spec/rubocop/ast/if_node_spec.rb                   |    2 -
 spec/rubocop/ast/keyword_splat_node_spec.rb        |    2 -
 spec/rubocop/ast/node_spec.rb                      |    2 -
 spec/rubocop/ast/or_node_spec.rb                   |  149 +++
 spec/rubocop/ast/pair_node_spec.rb                 |    2 -
 spec/rubocop/ast/resbody_node_spec.rb              |   21 +
 spec/rubocop/ast/send_node_spec.rb                 |  597 ++++++++++
 spec/rubocop/ast/until_node_spec.rb                |    2 -
 spec/rubocop/ast/when_node_spec.rb                 |    2 -
 spec/rubocop/ast/while_node_spec.rb                |    2 -
 spec/rubocop/cli/cli_auto_gen_config_spec.rb       |    6 +-
 spec/rubocop/cli/cli_autocorrect_spec.rb           |   36 +-
 spec/rubocop/cli/cli_options_spec.rb               |   73 +-
 spec/rubocop/cli_spec.rb                           |   41 +-
 spec/rubocop/comment_config_spec.rb                |    2 -
 spec/rubocop/config_loader_spec.rb                 |  109 +-
 spec/rubocop/config_spec.rb                        |   63 +-
 spec/rubocop/config_store_spec.rb                  |    2 -
 spec/rubocop/cop/badge_spec.rb                     |    2 -
 spec/rubocop/cop/bundler/duplicated_gem_spec.rb    |    2 -
 spec/rubocop/cop/bundler/ordered_gems_spec.rb      |   70 +-
 spec/rubocop/cop/commissioner_spec.rb              |    2 -
 spec/rubocop/cop/cop_spec.rb                       |    4 +-
 spec/rubocop/cop/corrector_spec.rb                 |    2 -
 spec/rubocop/cop/force_spec.rb                     |    2 -
 .../cop/lint/ambiguous_block_association_spec.rb   |   98 ++
 spec/rubocop/cop/lint/ambiguous_operator_spec.rb   |    2 -
 .../cop/lint/ambiguous_regexp_literal_spec.rb      |    2 -
 .../cop/lint/assignment_in_condition_spec.rb       |    2 -
 spec/rubocop/cop/lint/block_alignment_spec.rb      |    2 -
 .../cop/lint/circular_argument_reference_spec.rb   |    2 -
 spec/rubocop/cop/lint/condition_position_spec.rb   |    2 -
 spec/rubocop/cop/lint/debugger_spec.rb             |    2 -
 spec/rubocop/cop/lint/def_end_alignment_spec.rb    |    2 -
 .../cop/lint/deprecated_class_methods_spec.rb      |    2 -
 .../cop/lint/duplicate_case_condition_spec.rb      |    2 -
 spec/rubocop/cop/lint/duplicate_methods_spec.rb    |    2 -
 spec/rubocop/cop/lint/duplicated_key_spec.rb       |    2 -
 .../cop/lint/each_with_object_argument_spec.rb     |    2 -
 spec/rubocop/cop/lint/else_layout_spec.rb          |    2 -
 spec/rubocop/cop/lint/empty_ensure_spec.rb         |   16 +-
 spec/rubocop/cop/lint/empty_expression_spec.rb     |    2 -
 spec/rubocop/cop/lint/empty_interpolation_spec.rb  |    2 -
 spec/rubocop/cop/lint/empty_when_spec.rb           |    2 -
 spec/rubocop/cop/lint/end_alignment_spec.rb        |    2 -
 spec/rubocop/cop/lint/end_in_method_spec.rb        |    2 -
 spec/rubocop/cop/lint/ensure_return_spec.rb        |    2 -
 spec/rubocop/cop/lint/float_out_of_range_spec.rb   |    2 -
 .../cop/lint/format_parameter_mismatch_spec.rb     |    2 -
 spec/rubocop/cop/lint/handle_exceptions_spec.rb    |    2 -
 .../cop/lint/implicit_string_concatenation_spec.rb |    2 -
 .../cop/lint/ineffective_access_modifier_spec.rb   |    2 -
 spec/rubocop/cop/lint/inherit_exception_spec.rb    |    2 -
 .../cop/lint/invalid_character_literal_spec.rb     |    2 -
 spec/rubocop/cop/lint/literal_in_condition_spec.rb |    2 -
 .../cop/lint/literal_in_interpolation_spec.rb      |    2 -
 spec/rubocop/cop/lint/loop_spec.rb                 |    2 -
 spec/rubocop/cop/lint/multiple_compare_spec.rb     |    4 +-
 .../cop/lint/nested_method_definition_spec.rb      |    2 -
 .../cop/lint/next_without_accumulator_spec.rb      |    2 -
 .../cop/lint/non_local_exit_from_iterator_spec.rb  |   28 +-
 .../lint/parentheses_as_grouped_expression_spec.rb |    2 -
 spec/rubocop/cop/lint/percent_string_array_spec.rb |    2 -
 spec/rubocop/cop/lint/percent_symbol_array_spec.rb |    2 -
 spec/rubocop/cop/lint/rand_one_spec.rb             |    2 -
 spec/rubocop/cop/lint/require_parentheses_spec.rb  |    2 -
 spec/rubocop/cop/lint/rescue_exception_spec.rb     |    2 -
 .../rubocop/cop/lint/safe_navigation_chain_spec.rb |    5 +-
 spec/rubocop/cop/lint/shadowed_exception_spec.rb   |   13 +-
 .../lint/shadowing_outer_local_variable_spec.rb    |    2 -
 .../string_conversion_in_interpolation_spec.rb     |    2 -
 spec/rubocop/cop/lint/syntax_spec.rb               |    2 -
 .../lint/underscore_prefixed_variable_name_spec.rb |    2 -
 spec/rubocop/cop/lint/unified_integer_spec.rb      |    2 -
 spec/rubocop/cop/lint/unneeded_disable_spec.rb     |   34 +-
 .../cop/lint/unneeded_splat_expansion_spec.rb      |    2 -
 spec/rubocop/cop/lint/unreachable_code_spec.rb     |    2 -
 .../rubocop/cop/lint/unused_block_argument_spec.rb |    2 -
 .../cop/lint/unused_method_argument_spec.rb        |    2 -
 .../cop/lint/useless_access_modifier_spec.rb       |    2 -
 spec/rubocop/cop/lint/useless_assignment_spec.rb   |  143 ++-
 spec/rubocop/cop/lint/useless_comparison_spec.rb   |    2 -
 .../cop/lint/useless_else_without_rescue_spec.rb   |    2 -
 spec/rubocop/cop/lint/useless_setter_call_spec.rb  |    2 -
 spec/rubocop/cop/lint/void_spec.rb                 |    2 -
 spec/rubocop/cop/message_annotator_spec.rb         |   43 +-
 spec/rubocop/cop/metrics/abc_size_spec.rb          |    4 +-
 spec/rubocop/cop/metrics/block_length_spec.rb      |    2 -
 spec/rubocop/cop/metrics/block_nesting_spec.rb     |    2 -
 spec/rubocop/cop/metrics/class_length_spec.rb      |    2 -
 .../cop/metrics/cyclomatic_complexity_spec.rb      |    2 -
 spec/rubocop/cop/metrics/line_length_spec.rb       |   34 +-
 spec/rubocop/cop/metrics/method_length_spec.rb     |    2 -
 spec/rubocop/cop/metrics/module_length_spec.rb     |    2 -
 spec/rubocop/cop/metrics/parameter_lists_spec.rb   |    8 +-
 .../cop/metrics/perceived_complexity_spec.rb       |    2 -
 spec/rubocop/cop/offense_spec.rb                   |    4 +-
 .../cop/performance/case_when_splat_spec.rb        |    2 -
 spec/rubocop/cop/performance/casecmp_spec.rb       |    2 -
 .../cop/performance/compare_with_block_spec.rb     |    2 -
 spec/rubocop/cop/performance/count_spec.rb         |    2 -
 spec/rubocop/cop/performance/detect_spec.rb        |    4 +-
 .../cop/performance/double_start_end_with_spec.rb  |  287 ++++-
 spec/rubocop/cop/performance/end_with_spec.rb      |    2 -
 spec/rubocop/cop/performance/fixed_size_spec.rb    |    2 -
 spec/rubocop/cop/performance/flat_map_spec.rb      |    2 -
 .../cop/performance/hash_each_methods_spec.rb      |    2 -
 spec/rubocop/cop/performance/lstrip_rstrip_spec.rb |    2 -
 spec/rubocop/cop/performance/range_include_spec.rb |    2 -
 .../cop/performance/redundant_block_call_spec.rb   |    2 -
 .../cop/performance/redundant_match_spec.rb        |    2 -
 .../cop/performance/redundant_merge_spec.rb        |    2 -
 .../cop/performance/redundant_sort_by_spec.rb      |    2 -
 spec/rubocop/cop/performance/regexp_match_spec.rb  |    3 +-
 spec/rubocop/cop/performance/reverse_each_spec.rb  |    2 -
 spec/rubocop/cop/performance/sample_spec.rb        |    2 -
 spec/rubocop/cop/performance/size_spec.rb          |    2 -
 spec/rubocop/cop/performance/start_with_spec.rb    |    2 -
 .../cop/performance/string_replacement_spec.rb     |    2 -
 spec/rubocop/cop/performance/times_map_spec.rb     |    2 -
 spec/rubocop/cop/rails/action_filter_spec.rb       |  203 ++--
 .../cop/rails/active_support_aliases_spec.rb       |  102 ++
 spec/rubocop/cop/rails/blank_spec.rb               |  275 +++++
 spec/rubocop/cop/rails/date_spec.rb                |   16 +-
 .../rubocop/cop/rails/delegate_allow_blank_spec.rb |    2 -
 spec/rubocop/cop/rails/delegate_spec.rb            |    2 -
 spec/rubocop/cop/rails/dynamic_find_by_spec.rb     |    2 -
 spec/rubocop/cop/rails/enum_uniqueness_spec.rb     |    2 -
 spec/rubocop/cop/rails/exit_spec.rb                |    2 -
 spec/rubocop/cop/rails/file_path_spec.rb           |   20 +-
 spec/rubocop/cop/rails/find_by_spec.rb             |    2 -
 spec/rubocop/cop/rails/find_each_spec.rb           |    2 -
 .../cop/rails/has_and_belongs_to_many_spec.rb      |    2 -
 .../cop/rails/http_positional_arguments_spec.rb    |  690 ++++++++----
 spec/rubocop/cop/rails/not_null_column_spec.rb     |    2 -
 spec/rubocop/cop/rails/output_safety_spec.rb       |    2 -
 spec/rubocop/cop/rails/output_spec.rb              |    2 -
 .../cop/rails/pluralization_grammar_spec.rb        |    2 -
 spec/rubocop/cop/rails/present_spec.rb             |  274 +++++
 .../rubocop/cop/rails/read_write_attribute_spec.rb |    2 -
 .../cop/rails/relative_date_constant_spec.rb       |   49 +
 spec/rubocop/cop/rails/request_referer_spec.rb     |    1 -
 .../rubocop/cop/rails/reversible_migration_spec.rb |    2 -
 spec/rubocop/cop/rails/safe_navigation_spec.rb     |    1 -
 spec/rubocop/cop/rails/save_bang_spec.rb           |    1 -
 spec/rubocop/cop/rails/scope_args_spec.rb          |    2 -
 .../cop/rails/skips_model_validations_spec.rb      |   24 +-
 spec/rubocop/cop/rails/time_zone_spec.rb           |   42 +-
 spec/rubocop/cop/rails/uniq_before_pluck_spec.rb   |    2 -
 spec/rubocop/cop/rails/validation_spec.rb          |    2 -
 spec/rubocop/cop/registry_spec.rb                  |    2 -
 spec/rubocop/cop/security/eval_spec.rb             |    2 -
 spec/rubocop/cop/security/json_load_spec.rb        |   76 +-
 spec/rubocop/cop/security/marshal_load_spec.rb     |   63 +-
 spec/rubocop/cop/security/yaml_load_spec.rb        |   60 +-
 spec/rubocop/cop/severity_spec.rb                  |    2 -
 .../cop/style/access_modifier_indentation_spec.rb  |    2 -
 .../rubocop/cop/style/accessor_method_name_spec.rb |    2 -
 spec/rubocop/cop/style/alias_spec.rb               |    2 -
 spec/rubocop/cop/style/align_array_spec.rb         |    3 -
 spec/rubocop/cop/style/align_hash_spec.rb          |    2 -
 spec/rubocop/cop/style/align_parameters_spec.rb    |    3 -
 spec/rubocop/cop/style/and_or_spec.rb              |    2 -
 spec/rubocop/cop/style/array_join_spec.rb          |    2 -
 spec/rubocop/cop/style/ascii_comments_spec.rb      |    3 -
 spec/rubocop/cop/style/ascii_identifiers_spec.rb   |    3 -
 spec/rubocop/cop/style/attr_spec.rb                |    2 -
 .../cop/style/auto_resource_cleanup_spec.rb        |    2 -
 .../cop/style/bare_percent_literals_spec.rb        |    2 -
 spec/rubocop/cop/style/begin_block_spec.rb         |    2 -
 spec/rubocop/cop/style/block_comments_spec.rb      |    2 -
 spec/rubocop/cop/style/block_delimiters_spec.rb    |   32 +-
 spec/rubocop/cop/style/block_end_newline_spec.rb   |    2 -
 .../style/braces_around_hash_parameters_spec.rb    |    2 -
 spec/rubocop/cop/style/case_equality_spec.rb       |    2 -
 spec/rubocop/cop/style/case_indentation_spec.rb    |   38 +-
 spec/rubocop/cop/style/character_literal_spec.rb   |    2 -
 .../cop/style/class_and_module_camel_case_spec.rb  |    2 -
 .../cop/style/class_and_module_children_spec.rb    |    2 -
 spec/rubocop/cop/style/class_check_spec.rb         |    2 -
 spec/rubocop/cop/style/class_methods_spec.rb       |    2 -
 spec/rubocop/cop/style/class_vars_spec.rb          |    2 -
 .../style/closing_parenthesis_indentation_spec.rb  |    2 -
 spec/rubocop/cop/style/collection_methods_spec.rb  |    2 -
 spec/rubocop/cop/style/colon_method_call_spec.rb   |    2 -
 spec/rubocop/cop/style/command_literal_spec.rb     |    2 -
 spec/rubocop/cop/style/comment_annotation_spec.rb  |    2 -
 spec/rubocop/cop/style/comment_indentation_spec.rb |    2 -
 ...ditional_assignment_assign_in_condition_spec.rb |    2 -
 ...ditional_assignment_assign_to_condition_spec.rb |    2 -
 spec/rubocop/cop/style/constant_name_spec.rb       |    2 -
 spec/rubocop/cop/style/copyright_spec.rb           |    2 -
 .../rubocop/cop/style/def_with_parentheses_spec.rb |    2 -
 .../rubocop/cop/style/documentation_method_spec.rb |    2 -
 spec/rubocop/cop/style/documentation_spec.rb       |    2 -
 spec/rubocop/cop/style/dot_position_spec.rb        |    2 -
 spec/rubocop/cop/style/double_negation_spec.rb     |    2 -
 .../rubocop/cop/style/each_for_simple_loop_spec.rb |    8 +-
 spec/rubocop/cop/style/each_with_object_spec.rb    |    2 -
 spec/rubocop/cop/style/else_alignment_spec.rb      |    2 -
 .../rubocop/cop/style/empty_case_condition_spec.rb |    2 -
 spec/rubocop/cop/style/empty_else_spec.rb          |    2 -
 .../style/empty_line_after_magic_comment_spec.rb   |   76 ++
 .../cop/style/empty_line_between_defs_spec.rb      |  166 ++-
 .../empty_lines_around_access_modifier_spec.rb     |    2 -
 .../style/empty_lines_around_begin_body_spec.rb    |  202 ++++
 .../style/empty_lines_around_block_body_spec.rb    |    2 -
 .../style/empty_lines_around_class_body_spec.rb    |    2 -
 ...ines_around_exception_handling_keywords_spec.rb |  252 +++++
 .../style/empty_lines_around_method_body_spec.rb   |    2 -
 .../style/empty_lines_around_module_body_spec.rb   |    2 -
 spec/rubocop/cop/style/empty_lines_spec.rb         |    2 -
 spec/rubocop/cop/style/empty_literal_spec.rb       |   26 +-
 spec/rubocop/cop/style/empty_method_spec.rb        |    2 -
 spec/rubocop/cop/style/encoding_spec.rb            |    3 -
 spec/rubocop/cop/style/end_block_spec.rb           |    2 -
 spec/rubocop/cop/style/end_of_line_spec.rb         |  192 +++-
 spec/rubocop/cop/style/even_odd_spec.rb            |    2 -
 spec/rubocop/cop/style/extra_spacing_spec.rb       |    2 -
 spec/rubocop/cop/style/file_name_spec.rb           |    2 -
 .../style/first_array_element_line_break_spec.rb   |    2 -
 .../style/first_hash_element_line_break_spec.rb    |    2 -
 .../style/first_method_argument_line_break_spec.rb |    2 -
 .../first_method_parameter_line_break_spec.rb      |    2 -
 .../cop/style/first_parameter_indentation_spec.rb  |    3 -
 spec/rubocop/cop/style/flip_flop_spec.rb           |    2 -
 spec/rubocop/cop/style/for_spec.rb                 |    2 -
 spec/rubocop/cop/style/format_string_spec.rb       |    2 -
 .../style/frozen_string_literal_comment_spec.rb    |   22 +-
 spec/rubocop/cop/style/global_vars_spec.rb         |    2 -
 spec/rubocop/cop/style/guard_clause_spec.rb        |    2 -
 spec/rubocop/cop/style/hash_syntax_spec.rb         |    2 -
 .../style/identical_conditional_branches_spec.rb   |   20 +-
 spec/rubocop/cop/style/if_inside_else_spec.rb      |    2 -
 .../style/if_unless_modifier_of_if_unless_spec.rb  |    2 -
 spec/rubocop/cop/style/if_unless_modifier_spec.rb  |    2 -
 spec/rubocop/cop/style/if_with_semicolon_spec.rb   |    2 -
 .../cop/style/implicit_runtime_error_spec.rb       |    2 -
 spec/rubocop/cop/style/indent_array_spec.rb        |    2 -
 spec/rubocop/cop/style/indent_assignment_spec.rb   |    3 -
 spec/rubocop/cop/style/indent_hash_spec.rb         |    2 -
 spec/rubocop/cop/style/indent_heredoc_spec.rb      |  292 +++++
 .../cop/style/indentation_consistency_spec.rb      |    3 -
 spec/rubocop/cop/style/indentation_width_spec.rb   |   28 +-
 spec/rubocop/cop/style/infinite_loop_spec.rb       |    2 -
 spec/rubocop/cop/style/initial_indentation_spec.rb |    2 -
 spec/rubocop/cop/style/inline_comment_spec.rb      |    2 -
 spec/rubocop/cop/style/inverse_methods_spec.rb     |  252 +++++
 spec/rubocop/cop/style/lambda_call_spec.rb         |    7 +-
 spec/rubocop/cop/style/lambda_spec.rb              |    2 -
 .../cop/style/leading_comment_space_spec.rb        |    2 -
 .../cop/style/line_end_concatenation_spec.rb       |    2 -
 .../method_call_with_args_parentheses_spec.rb      |   32 +-
 .../method_call_without_args_parentheses_spec.rb   |    2 -
 .../style/method_called_on_do_end_block_spec.rb    |    2 -
 .../cop/style/method_def_parentheses_spec.rb       |    2 -
 spec/rubocop/cop/style/method_missing_spec.rb      |    2 -
 spec/rubocop/cop/style/method_name_spec.rb         |    2 -
 spec/rubocop/cop/style/missing_else_spec.rb        |    2 -
 spec/rubocop/cop/style/mixin_grouping_spec.rb      |  210 ++++
 spec/rubocop/cop/style/module_function_spec.rb     |    2 -
 .../cop/style/multiline_array_brace_layout_spec.rb |    2 -
 .../cop/style/multiline_assignment_layout_spec.rb  |    2 -
 .../cop/style/multiline_block_chain_spec.rb        |    2 -
 .../cop/style/multiline_block_layout_spec.rb       |    2 -
 .../cop/style/multiline_hash_brace_layout_spec.rb  |    2 -
 .../cop/style/multiline_if_modifier_spec.rb        |    2 -
 spec/rubocop/cop/style/multiline_if_then_spec.rb   |    2 -
 .../cop/style/multiline_memoization_spec.rb        |  209 ++--
 .../multiline_method_call_brace_layout_spec.rb     |    2 -
 .../multiline_method_call_indentation_spec.rb      |  118 +-
 ...ultiline_method_definition_brace_layout_spec.rb |    2 -
 .../style/multiline_operation_indentation_spec.rb  |    2 -
 .../cop/style/multiline_ternary_operator_spec.rb   |    2 -
 spec/rubocop/cop/style/mutable_constant_spec.rb    |    7 +-
 spec/rubocop/cop/style/negated_if_spec.rb          |  280 +++--
 spec/rubocop/cop/style/negated_while_spec.rb       |    2 -
 spec/rubocop/cop/style/nested_modifier_spec.rb     |    2 -
 .../cop/style/nested_parenthesized_calls_spec.rb   |    2 -
 .../cop/style/nested_ternary_operator_spec.rb      |    2 -
 spec/rubocop/cop/style/next_spec.rb                |    2 -
 spec/rubocop/cop/style/nil_comparison_spec.rb      |    2 -
 spec/rubocop/cop/style/non_nil_check_spec.rb       |    2 -
 spec/rubocop/cop/style/not_spec.rb                 |    2 -
 .../cop/style/numeric_literal_prefix_spec.rb       |    2 -
 spec/rubocop/cop/style/numeric_literals_spec.rb    |   26 +-
 spec/rubocop/cop/style/numeric_predicate_spec.rb   |    2 -
 .../rubocop/cop/style/one_line_conditional_spec.rb |    2 -
 spec/rubocop/cop/style/op_method_spec.rb           |    4 +-
 spec/rubocop/cop/style/option_hash_spec.rb         |    2 -
 spec/rubocop/cop/style/optional_arguments_spec.rb  |    2 -
 spec/rubocop/cop/style/parallel_assignment_spec.rb |    2 -
 .../cop/style/parentheses_around_condition_spec.rb |    2 -
 .../cop/style/percent_literal_delimiters_spec.rb   |   44 +-
 spec/rubocop/cop/style/percent_q_literals_spec.rb  |    2 -
 spec/rubocop/cop/style/perl_backrefs_spec.rb       |    2 -
 spec/rubocop/cop/style/predicate_name_spec.rb      |    2 -
 .../cop/style/preferred_hash_methods_spec.rb       |    2 -
 spec/rubocop/cop/style/proc_spec.rb                |    2 -
 spec/rubocop/cop/style/raise_args_spec.rb          |   11 +-
 spec/rubocop/cop/style/redundant_begin_spec.rb     |    2 -
 spec/rubocop/cop/style/redundant_exception_spec.rb |    2 -
 spec/rubocop/cop/style/redundant_freeze_spec.rb    |    2 -
 .../cop/style/redundant_parentheses_spec.rb        |    2 -
 spec/rubocop/cop/style/redundant_return_spec.rb    |    2 -
 spec/rubocop/cop/style/redundant_self_spec.rb      |    8 +-
 spec/rubocop/cop/style/regexp_literal_spec.rb      |    2 -
 .../cop/style/rescue_ensure_alignment_spec.rb      |    2 -
 spec/rubocop/cop/style/rescue_modifier_spec.rb     |    9 +-
 spec/rubocop/cop/style/safe_navigation_spec.rb     |    1 -
 spec/rubocop/cop/style/self_assignment_spec.rb     |    4 +-
 spec/rubocop/cop/style/semicolon_spec.rb           |    2 -
 spec/rubocop/cop/style/send_spec.rb                |    2 -
 spec/rubocop/cop/style/signal_exception_spec.rb    |    2 -
 .../cop/style/single_line_block_params_spec.rb     |    2 -
 spec/rubocop/cop/style/single_line_methods_spec.rb |    2 -
 spec/rubocop/cop/style/space_after_colon_spec.rb   |    2 -
 spec/rubocop/cop/style/space_after_comma_spec.rb   |    2 -
 .../cop/style/space_after_method_name_spec.rb      |    2 -
 spec/rubocop/cop/style/space_after_not_spec.rb     |    2 -
 .../cop/style/space_after_semicolon_spec.rb        |    2 -
 .../style/space_around_block_parameters_spec.rb    |    2 -
 ...pace_around_equals_in_parameter_default_spec.rb |    2 -
 .../rubocop/cop/style/space_around_keyword_spec.rb |    1 -
 .../cop/style/space_around_operators_spec.rb       |   25 +-
 .../cop/style/space_before_block_braces_spec.rb    |    2 -
 spec/rubocop/cop/style/space_before_comma_spec.rb  |    2 -
 .../rubocop/cop/style/space_before_comment_spec.rb |    2 -
 .../cop/style/space_before_first_arg_spec.rb       |    2 -
 .../cop/style/space_before_semicolon_spec.rb       |    2 -
 .../cop/style/space_in_lambda_literal_spec.rb      |    2 -
 .../space_inside_array_percent_literal_spec.rb     |    2 -
 .../cop/style/space_inside_block_braces_spec.rb    |    2 -
 .../cop/style/space_inside_brackets_spec.rb        |    2 -
 .../style/space_inside_hash_literal_braces_spec.rb |   10 +-
 spec/rubocop/cop/style/space_inside_parens_spec.rb |    2 -
 ...space_inside_percent_literal_delimiters_spec.rb |    2 -
 .../cop/style/space_inside_range_literal_spec.rb   |    2 -
 .../space_inside_string_interpolation_spec.rb      |    2 -
 spec/rubocop/cop/style/special_global_vars_spec.rb |    2 -
 .../cop/style/stabby_lambda_parentheses_spec.rb    |    1 -
 .../style/string_literals_in_interpolation_spec.rb |    2 -
 spec/rubocop/cop/style/string_literals_spec.rb     |   24 +-
 spec/rubocop/cop/style/string_methods_spec.rb      |    2 -
 spec/rubocop/cop/style/struct_inheritance_spec.rb  |    2 -
 spec/rubocop/cop/style/symbol_array_spec.rb        |   18 +-
 spec/rubocop/cop/style/symbol_literal_spec.rb      |    2 -
 spec/rubocop/cop/style/symbol_proc_spec.rb         |    2 -
 spec/rubocop/cop/style/tab_spec.rb                 |    2 -
 spec/rubocop/cop/style/ternary_parentheses_spec.rb |   53 +-
 .../rubocop/cop/style/trailing_blank_lines_spec.rb |    2 -
 .../cop/style/trailing_comma_in_arguments_spec.rb  |    2 -
 .../cop/style/trailing_comma_in_literal_spec.rb    |    2 -
 .../cop/style/trailing_underscore_variable_spec.rb |    2 -
 spec/rubocop/cop/style/trailing_whitespace_spec.rb |    2 -
 spec/rubocop/cop/style/trivial_accessors_spec.rb   |    2 -
 spec/rubocop/cop/style/unless_else_spec.rb         |    2 -
 spec/rubocop/cop/style/unneeded_capital_w_spec.rb  |    3 +-
 .../cop/style/unneeded_interpolation_spec.rb       |    2 -
 spec/rubocop/cop/style/unneeded_percent_q_spec.rb  |   10 +-
 .../cop/style/variable_interpolation_spec.rb       |    2 -
 spec/rubocop/cop/style/variable_name_spec.rb       |    2 -
 spec/rubocop/cop/style/variable_number_spec.rb     |    2 -
 spec/rubocop/cop/style/when_then_spec.rb           |    2 -
 spec/rubocop/cop/style/while_until_do_spec.rb      |    6 +-
 .../rubocop/cop/style/while_until_modifier_spec.rb |   12 +-
 spec/rubocop/cop/style/word_array_spec.rb          |   30 +-
 .../cop/style/zero_length_predicate_spec.rb        |    2 -
 spec/rubocop/cop/team_spec.rb                      |   39 +-
 spec/rubocop/cop/util_spec.rb                      |   24 +-
 spec/rubocop/cop/variable_force/assignment_spec.rb |    2 -
 spec/rubocop/cop/variable_force/locatable_spec.rb  |  973 -----------------
 spec/rubocop/cop/variable_force/reference_spec.rb  |    1 -
 spec/rubocop/cop/variable_force/scope_spec.rb      |   89 +-
 spec/rubocop/cop/variable_force/variable_spec.rb   |    1 -
 .../cop/variable_force/variable_table_spec.rb      |    2 -
 spec/rubocop/cop/variable_force_spec.rb            |    1 -
 spec/rubocop/formatter/base_formatter_spec.rb      |    4 +-
 .../formatter/clang_style_formatter_spec.rb        |    2 -
 spec/rubocop/formatter/colorizable_spec.rb         |   22 +-
 .../formatter/disabled_config_formatter_spec.rb    |    2 -
 .../formatter/disabled_lines_formatter_spec.rb     |    2 -
 .../formatter/emacs_style_formatter_spec.rb        |    2 -
 spec/rubocop/formatter/file_list_formatter_spec.rb |    2 -
 spec/rubocop/formatter/formatter_set_spec.rb       |    4 +-
 .../formatter/fuubar_style_formatter_spec.rb       |    2 -
 spec/rubocop/formatter/html_formatter_spec.rb      |   12 +-
 spec/rubocop/formatter/json_formatter_spec.rb      |    2 -
 .../formatter/offense_count_formatter_spec.rb      |    2 -
 spec/rubocop/formatter/progress_formatter_spec.rb  |    2 -
 .../formatter/simple_text_formatter_spec.rb        |    2 -
 spec/rubocop/formatter/text_util_spec.rb           |    2 -
 .../formatter/worst_offenders_formatter_spec.rb    |    2 -
 spec/rubocop/magic_comment_spec.rb                 |   22 +-
 spec/rubocop/node_pattern_spec.rb                  |    3 +-
 spec/rubocop/options_spec.rb                       |  128 ++-
 spec/rubocop/path_util_spec.rb                     |    2 -
 spec/rubocop/processed_source_spec.rb              |    3 -
 spec/rubocop/rake_task_spec.rb                     |    1 -
 spec/rubocop/remote_config_spec.rb                 |    2 -
 spec/rubocop/result_cache_spec.rb                  |    4 +-
 spec/rubocop/runner_spec.rb                        |   15 +-
 spec/rubocop/string_interpreter_spec.rb            |    2 -
 spec/rubocop/string_util_spec.rb                   |    2 -
 spec/rubocop/target_finder_spec.rb                 |   41 +-
 spec/rubocop/token_spec.rb                         |    2 -
 spec/spec_helper.rb                                |    2 +
 tasks/cops_documentation.rake                      |   28 +-
 tasks/new_cop.rake                                 |  142 +--
 683 files changed, 12311 insertions(+), 4738 deletions(-)
 create mode 100644 lib/rubocop/ast/node/and_node.rb
 create mode 100644 lib/rubocop/ast/node/ensure_node.rb
 create mode 100644 lib/rubocop/ast/node/mixin/binary_operator_node.rb
 create mode 100644 lib/rubocop/ast/node/mixin/predicate_operator_node.rb
 create mode 100644 lib/rubocop/ast/node/or_node.rb
 create mode 100644 lib/rubocop/ast/node/resbody_node.rb
 create mode 100644 lib/rubocop/ast/node/send_node.rb
 create mode 100644 lib/rubocop/cop/lint/ambiguous_block_association.rb
 create mode 100644 lib/rubocop/cop/mixin/ignored_pattern.rb
 create mode 100644 lib/rubocop/cop/mixin/rescue_node.rb
 create mode 100644 lib/rubocop/cop/mixin/target_rails_version.rb
 create mode 100644 lib/rubocop/cop/rails/active_support_aliases.rb
 create mode 100644 lib/rubocop/cop/rails/blank.rb
 create mode 100644 lib/rubocop/cop/rails/present.rb
 create mode 100644 lib/rubocop/cop/rails/relative_date_constant.rb
 create mode 100644 lib/rubocop/cop/style/empty_line_after_magic_comment.rb
 copy lib/rubocop/cop/style/{empty_lines_around_method_body.rb => empty_lines_around_begin_body.rb} (65%)
 create mode 100644 lib/rubocop/cop/style/empty_lines_around_exception_handling_keywords.rb
 create mode 100644 lib/rubocop/cop/style/indent_heredoc.rb
 create mode 100644 lib/rubocop/cop/style/inverse_methods.rb
 create mode 100644 lib/rubocop/cop/style/mixin_grouping.rb
 create mode 100644 lib/rubocop/cop/variable_force/branch.rb
 create mode 100644 lib/rubocop/cop/variable_force/branchable.rb
 delete mode 100644 lib/rubocop/cop/variable_force/locatable.rb
 create mode 100644 lib/rubocop/platform.rb
 create mode 100644 relnotes/v0.48.0.md
 create mode 100644 spec/rubocop/ast/and_node_spec.rb
 create mode 100644 spec/rubocop/ast/ensure_node_spec.rb
 create mode 100644 spec/rubocop/ast/or_node_spec.rb
 create mode 100644 spec/rubocop/ast/resbody_node_spec.rb
 create mode 100644 spec/rubocop/ast/send_node_spec.rb
 create mode 100644 spec/rubocop/cop/lint/ambiguous_block_association_spec.rb
 create mode 100644 spec/rubocop/cop/rails/active_support_aliases_spec.rb
 create mode 100644 spec/rubocop/cop/rails/blank_spec.rb
 create mode 100644 spec/rubocop/cop/rails/present_spec.rb
 create mode 100644 spec/rubocop/cop/rails/relative_date_constant_spec.rb
 create mode 100644 spec/rubocop/cop/style/empty_line_after_magic_comment_spec.rb
 create mode 100644 spec/rubocop/cop/style/empty_lines_around_begin_body_spec.rb
 create mode 100644 spec/rubocop/cop/style/empty_lines_around_exception_handling_keywords_spec.rb
 create mode 100644 spec/rubocop/cop/style/indent_heredoc_spec.rb
 create mode 100644 spec/rubocop/cop/style/inverse_methods_spec.rb
 create mode 100644 spec/rubocop/cop/style/mixin_grouping_spec.rb
 delete mode 100644 spec/rubocop/cop/variable_force/locatable_spec.rb

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/rubocop.git



More information about the Pkg-ruby-extras-commits mailing list