rubocop 1.63.5 → 1.64.1

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.
Files changed (37) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -2
  3. data/config/default.yml +18 -2
  4. data/lib/rubocop/cli/command/show_docs_url.rb +2 -2
  5. data/lib/rubocop/config.rb +2 -3
  6. data/lib/rubocop/cop/base.rb +6 -13
  7. data/lib/rubocop/cop/bundler/gem_version.rb +3 -5
  8. data/lib/rubocop/cop/documentation.rb +16 -6
  9. data/lib/rubocop/cop/force.rb +12 -0
  10. data/lib/rubocop/cop/gemspec/dependency_version.rb +3 -5
  11. data/lib/rubocop/cop/layout/empty_comment.rb +3 -1
  12. data/lib/rubocop/cop/layout/space_inside_string_interpolation.rb +3 -4
  13. data/lib/rubocop/cop/lint/erb_new_arguments.rb +21 -14
  14. data/lib/rubocop/cop/metrics/utils/code_length_calculator.rb +3 -3
  15. data/lib/rubocop/cop/mixin/hash_shorthand_syntax.rb +9 -2
  16. data/lib/rubocop/cop/style/access_modifier_declarations.rb +50 -0
  17. data/lib/rubocop/cop/style/arguments_forwarding.rb +3 -1
  18. data/lib/rubocop/cop/style/copyright.rb +15 -10
  19. data/lib/rubocop/cop/style/documentation.rb +24 -24
  20. data/lib/rubocop/cop/style/documentation_method.rb +20 -0
  21. data/lib/rubocop/cop/style/hash_syntax.rb +18 -0
  22. data/lib/rubocop/cop/style/if_with_boolean_literal_branches.rb +5 -3
  23. data/lib/rubocop/cop/style/map_into_array.rb +1 -1
  24. data/lib/rubocop/cop/style/one_line_conditional.rb +1 -1
  25. data/lib/rubocop/cop/style/redundant_line_continuation.rb +2 -1
  26. data/lib/rubocop/cop/style/send_with_literal_method_name.rb +90 -0
  27. data/lib/rubocop/cop/style/super_arguments.rb +156 -0
  28. data/lib/rubocop/cop/style/symbol_proc.rb +32 -5
  29. data/lib/rubocop/cop/team.rb +2 -0
  30. data/lib/rubocop/formatter/disabled_config_formatter.rb +13 -9
  31. data/lib/rubocop/formatter/formatter_set.rb +7 -1
  32. data/lib/rubocop/lockfile.rb +1 -1
  33. data/lib/rubocop/lsp/routes.rb +8 -10
  34. data/lib/rubocop/lsp.rb +9 -2
  35. data/lib/rubocop/version.rb +1 -1
  36. data/lib/rubocop.rb +2 -0
  37. metadata +10 -8
metadata CHANGED
@@ -1,16 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.63.5
4
+ version: 1.64.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bozhidar Batsov
8
8
  - Jonas Arvidsson
9
9
  - Yuji Nakayama
10
- autorequire:
10
+ autorequire:
11
11
  bindir: exe
12
12
  cert_chain: []
13
- date: 2024-05-09 00:00:00.000000000 Z
13
+ date: 2024-05-31 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: json
@@ -885,6 +885,7 @@ files:
885
885
  - lib/rubocop/cop/style/self_assignment.rb
886
886
  - lib/rubocop/cop/style/semicolon.rb
887
887
  - lib/rubocop/cop/style/send.rb
888
+ - lib/rubocop/cop/style/send_with_literal_method_name.rb
888
889
  - lib/rubocop/cop/style/signal_exception.rb
889
890
  - lib/rubocop/cop/style/single_argument_dig.rb
890
891
  - lib/rubocop/cop/style/single_line_block_params.rb
@@ -904,6 +905,7 @@ files:
904
905
  - lib/rubocop/cop/style/string_methods.rb
905
906
  - lib/rubocop/cop/style/strip.rb
906
907
  - lib/rubocop/cop/style/struct_inheritance.rb
908
+ - lib/rubocop/cop/style/super_arguments.rb
907
909
  - lib/rubocop/cop/style/super_with_args_parentheses.rb
908
910
  - lib/rubocop/cop/style/swap_values.rb
909
911
  - lib/rubocop/cop/style/symbol_array.rb
@@ -1032,12 +1034,12 @@ licenses:
1032
1034
  - MIT
1033
1035
  metadata:
1034
1036
  homepage_uri: https://rubocop.org/
1035
- changelog_uri: https://github.com/rubocop/rubocop/releases/tag/v1.63.5
1037
+ changelog_uri: https://github.com/rubocop/rubocop/releases/tag/v1.64.1
1036
1038
  source_code_uri: https://github.com/rubocop/rubocop/
1037
- documentation_uri: https://docs.rubocop.org/rubocop/1.63/
1039
+ documentation_uri: https://docs.rubocop.org/rubocop/1.64/
1038
1040
  bug_tracker_uri: https://github.com/rubocop/rubocop/issues
1039
1041
  rubygems_mfa_required: 'true'
1040
- post_install_message:
1042
+ post_install_message:
1041
1043
  rdoc_options: []
1042
1044
  require_paths:
1043
1045
  - lib
@@ -1052,8 +1054,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1052
1054
  - !ruby/object:Gem::Version
1053
1055
  version: '0'
1054
1056
  requirements: []
1055
- rubygems_version: 3.4.22
1056
- signing_key:
1057
+ rubygems_version: 3.3.7
1058
+ signing_key:
1057
1059
  specification_version: 4
1058
1060
  summary: Automatic Ruby code style checking tool.
1059
1061
  test_files: []