lightning_ui_kit 0.3.5 → 0.4.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.
- checksums.yaml +4 -4
- data/README.md +34 -3
- data/app/assets/stylesheets/lightning_ui_kit/application.css +6 -0
- data/app/assets/stylesheets/lightning_ui_kit/themes.css +14 -0
- data/app/assets/vendor/lightning_ui_kit.css +3258 -0
- data/app/assets/vendor/lightning_ui_kit.js +18 -0
- data/app/components/lightning_ui_kit/aspect_ratio_component.html.erb +3 -0
- data/app/components/lightning_ui_kit/aspect_ratio_component.rb +35 -0
- data/app/components/lightning_ui_kit/auth_layout_component.html.erb +5 -0
- data/app/components/lightning_ui_kit/auth_layout_component.rb +9 -0
- data/app/components/lightning_ui_kit/breadcrumb/item_component.html.erb +7 -0
- data/app/components/lightning_ui_kit/breadcrumb/item_component.rb +27 -0
- data/app/components/lightning_ui_kit/breadcrumb_component.html.erb +12 -0
- data/app/components/lightning_ui_kit/breadcrumb_component.rb +23 -0
- data/app/components/lightning_ui_kit/button_component.rb +13 -0
- data/app/components/lightning_ui_kit/calendar_component.html.erb +15 -0
- data/app/components/lightning_ui_kit/calendar_component.rb +47 -0
- data/app/components/lightning_ui_kit/carousel_component.html.erb +24 -0
- data/app/components/lightning_ui_kit/carousel_component.rb +31 -0
- data/app/components/lightning_ui_kit/chart_component.html.erb +102 -0
- data/app/components/lightning_ui_kit/chart_component.rb +534 -0
- data/app/components/lightning_ui_kit/collapsible_component.html.erb +10 -0
- data/app/components/lightning_ui_kit/collapsible_component.rb +28 -0
- data/app/components/lightning_ui_kit/combobox_component.html.erb +5 -5
- data/app/components/lightning_ui_kit/combobox_component.rb +29 -5
- data/app/components/lightning_ui_kit/command/item_component.html.erb +1 -0
- data/app/components/lightning_ui_kit/command/item_component.rb +8 -0
- data/app/components/lightning_ui_kit/command_component.html.erb +25 -0
- data/app/components/lightning_ui_kit/command_component.rb +26 -0
- data/app/components/lightning_ui_kit/context_menu_component.html.erb +12 -0
- data/app/components/lightning_ui_kit/context_menu_component.rb +27 -0
- data/app/components/lightning_ui_kit/copy_input_component.html.erb +37 -0
- data/app/components/lightning_ui_kit/copy_input_component.rb +60 -0
- data/app/components/lightning_ui_kit/date_picker_component.html.erb +12 -0
- data/app/components/lightning_ui_kit/date_picker_component.rb +53 -0
- data/app/components/lightning_ui_kit/description_list/item_component.html.erb +2 -12
- data/app/components/lightning_ui_kit/description_list/item_component.rb +28 -1
- data/app/components/lightning_ui_kit/description_list_component.html.erb +2 -2
- data/app/components/lightning_ui_kit/description_list_component.rb +27 -1
- data/app/components/lightning_ui_kit/file_input_component.rb +1 -1
- data/app/components/lightning_ui_kit/hover_card_component.html.erb +15 -0
- data/app/components/lightning_ui_kit/hover_card_component.rb +35 -0
- data/app/components/lightning_ui_kit/input_component.rb +1 -0
- data/app/components/lightning_ui_kit/input_otp_component.html.erb +19 -0
- data/app/components/lightning_ui_kit/input_otp_component.rb +40 -0
- data/app/components/lightning_ui_kit/menubar/menu_component.html.erb +12 -0
- data/app/components/lightning_ui_kit/menubar/menu_component.rb +22 -0
- data/app/components/lightning_ui_kit/menubar_component.html.erb +5 -0
- data/app/components/lightning_ui_kit/menubar_component.rb +21 -0
- data/app/components/lightning_ui_kit/modal_component.html.erb +44 -24
- data/app/components/lightning_ui_kit/modal_component.rb +42 -2
- data/app/components/lightning_ui_kit/navigation_menu/item_component.html.erb +1 -0
- data/app/components/lightning_ui_kit/navigation_menu/item_component.rb +13 -0
- data/app/components/lightning_ui_kit/navigation_menu_component.html.erb +27 -0
- data/app/components/lightning_ui_kit/navigation_menu_component.rb +26 -0
- data/app/components/lightning_ui_kit/pagination_component.html.erb +2 -2
- data/app/components/lightning_ui_kit/pagination_component.rb +1 -2
- data/app/components/lightning_ui_kit/popover_component.html.erb +8 -0
- data/app/components/lightning_ui_kit/popover_component.rb +32 -0
- data/app/components/lightning_ui_kit/progress_component.html.erb +3 -0
- data/app/components/lightning_ui_kit/progress_component.rb +39 -0
- data/app/components/lightning_ui_kit/resizable_component.html.erb +17 -0
- data/app/components/lightning_ui_kit/resizable_component.rb +52 -0
- data/app/components/lightning_ui_kit/scroll_area_component.html.erb +3 -0
- data/app/components/lightning_ui_kit/scroll_area_component.rb +32 -0
- data/app/components/lightning_ui_kit/separator_component.html.erb +1 -0
- data/app/components/lightning_ui_kit/separator_component.rb +36 -0
- data/app/components/lightning_ui_kit/sheet_component.html.erb +53 -0
- data/app/components/lightning_ui_kit/sheet_component.rb +60 -0
- data/app/components/lightning_ui_kit/slider_component.html.erb +20 -0
- data/app/components/lightning_ui_kit/slider_component.rb +56 -0
- data/app/components/lightning_ui_kit/table/column_component.rb +19 -2
- data/app/components/lightning_ui_kit/table_component.html.erb +128 -35
- data/app/components/lightning_ui_kit/table_component.rb +161 -5
- data/app/components/lightning_ui_kit/toggle_component.html.erb +3 -0
- data/app/components/lightning_ui_kit/toggle_component.rb +53 -0
- data/app/components/lightning_ui_kit/toggle_group/item_component.html.erb +1 -0
- data/app/components/lightning_ui_kit/toggle_group/item_component.rb +8 -0
- data/app/components/lightning_ui_kit/toggle_group_component.html.erb +15 -0
- data/app/components/lightning_ui_kit/toggle_group_component.rb +57 -0
- data/app/components/lightning_ui_kit/tooltip_component.html.erb +1 -1
- data/app/controllers/concerns/lightning_ui_kit/sortable.rb +18 -0
- data/app/javascript/lightning_ui_kit/controllers/calendar_controller.js +103 -0
- data/app/javascript/lightning_ui_kit/controllers/carousel_controller.js +68 -0
- data/app/javascript/lightning_ui_kit/controllers/chart_controller.js +109 -0
- data/app/javascript/lightning_ui_kit/controllers/clipboard_controller.js +40 -3
- data/app/javascript/lightning_ui_kit/controllers/collapsible_controller.js +24 -0
- data/app/javascript/lightning_ui_kit/controllers/command_controller.js +71 -0
- data/app/javascript/lightning_ui_kit/controllers/context_menu_controller.js +59 -0
- data/app/javascript/lightning_ui_kit/controllers/date_picker_controller.js +69 -0
- data/app/javascript/lightning_ui_kit/controllers/dropzone_controller.js +1 -1
- data/app/javascript/lightning_ui_kit/controllers/hover_card_controller.js +84 -0
- data/app/javascript/lightning_ui_kit/controllers/menubar_controller.js +55 -0
- data/app/javascript/lightning_ui_kit/controllers/modal_controller.js +28 -16
- data/app/javascript/lightning_ui_kit/controllers/navigation_menu_controller.js +96 -0
- data/app/javascript/lightning_ui_kit/controllers/otp_controller.js +65 -0
- data/app/javascript/lightning_ui_kit/controllers/popover_controller.js +75 -0
- data/app/javascript/lightning_ui_kit/controllers/resizable_controller.js +51 -0
- data/app/javascript/lightning_ui_kit/controllers/reveal_controller.js +2 -2
- data/app/javascript/lightning_ui_kit/controllers/sheet_controller.js +42 -0
- data/app/javascript/lightning_ui_kit/controllers/slider_controller.js +23 -0
- data/app/javascript/lightning_ui_kit/controllers/table_controller.js +82 -0
- data/app/javascript/lightning_ui_kit/controllers/toggle_controller.js +16 -0
- data/app/javascript/lightning_ui_kit/controllers/toggle_group_controller.js +31 -0
- data/app/javascript/lightning_ui_kit/index.js +36 -0
- data/config/deploy.yml +1 -1
- data/lib/lightning_ui_kit/builder.rb +96 -0
- data/lib/lightning_ui_kit/sorting.rb +46 -0
- data/lib/lightning_ui_kit/version.rb +1 -1
- data/lib/lightning_ui_kit.rb +1 -0
- data/vendor/bundle/ruby/3.4.0/cache/json-2.18.1.gem +0 -0
- data/vendor/bundle/ruby/3.4.0/cache/ostruct-0.6.3.gem +0 -0
- data/vendor/bundle/ruby/3.4.0/cache/rubocop-1.84.2.gem +0 -0
- data/vendor/bundle/ruby/3.4.0/cache/standard-1.54.0.gem +0 -0
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/bigdecimal-4.1.2/bigdecimal.so +0 -0
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/bigdecimal-4.1.2/gem_make.out +6 -6
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/bigdecimal-4.1.2/mkmf.log +26 -26
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/date-3.4.1/date_core.so +0 -0
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/date-3.4.1/gem_make.out +6 -6
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/date-3.4.1/mkmf.log +4 -4
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/erb-5.0.2/erb/escape.so +0 -0
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/erb-5.0.2/gem_make.out +6 -6
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/erb-5.0.2/mkmf.log +2 -2
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/io-console-0.8.1/gem_make.out +6 -6
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/io-console-0.8.1/io/console.so +0 -0
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/io-console-0.8.1/mkmf.log +16 -16
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/json-2.18.1/gem_make.out +25 -0
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/json-2.18.1/json/ext/generator.so +0 -0
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/json-2.18.1/json/ext/parser.so +0 -0
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/json-2.18.1/mkmf.log +165 -0
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/nio4r-2.7.4/gem_make.out +6 -6
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/nio4r-2.7.4/mkmf.log +12 -12
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/nio4r-2.7.4/nio4r_ext.so +0 -0
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/prism-1.9.0/gem_make.out +6 -6
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/prism-1.9.0/mkmf.log +6 -6
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/prism-1.9.0/prism/prism.so +0 -0
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/psych-5.2.6/gem_make.out +6 -6
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/psych-5.2.6/mkmf.log +10 -10
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/psych-5.2.6/psych.so +0 -0
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/racc-1.8.1/gem_make.out +6 -6
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/racc-1.8.1/racc/cparse.so +0 -0
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/stringio-3.1.7/gem_make.out +6 -6
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/stringio-3.1.7/mkmf.log +2 -2
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/stringio-3.1.7/stringio.so +0 -0
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/websocket-driver-0.8.0/gem_make.out +6 -6
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/websocket-driver-0.8.0/websocket_mask.so +0 -0
- data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.1.2/ext/bigdecimal/Makefile +3 -3
- data/vendor/bundle/ruby/3.4.0/gems/bigdecimal-4.1.2/lib/bigdecimal.so +0 -0
- data/vendor/bundle/ruby/3.4.0/gems/date-3.4.1/ext/date/Makefile +3 -3
- data/vendor/bundle/ruby/3.4.0/gems/date-3.4.1/lib/date_core.so +0 -0
- data/vendor/bundle/ruby/3.4.0/gems/erb-5.0.2/ext/erb/escape/Makefile +3 -3
- data/vendor/bundle/ruby/3.4.0/gems/erb-5.0.2/lib/erb/escape.so +0 -0
- data/vendor/bundle/ruby/3.4.0/gems/io-console-0.8.1/ext/io/console/Makefile +3 -3
- data/vendor/bundle/ruby/3.4.0/gems/io-console-0.8.1/lib/io/console.so +0 -0
- data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/CHANGES.md +733 -0
- data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/ext/json/ext/fbuffer/fbuffer.h +249 -0
- data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/ext/json/ext/generator/Makefile +273 -0
- data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/ext/json/ext/generator/generator.c +2224 -0
- data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/ext/json/ext/json.h +101 -0
- data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/ext/json/ext/parser/Makefile +273 -0
- data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/ext/json/ext/parser/parser.c +1672 -0
- data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/ext/json/ext/simd/simd.h +218 -0
- data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/ext/json/ext/vendor/fpconv.c +480 -0
- data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/lib/json/ext/generator.so +0 -0
- data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/lib/json/ext/parser.so +0 -0
- data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/lib/json/version.rb +5 -0
- data/vendor/bundle/ruby/3.4.0/gems/json-2.18.1/lib/json.rb +663 -0
- data/vendor/bundle/ruby/3.4.0/gems/nio4r-2.7.4/ext/nio4r/Makefile +3 -3
- data/vendor/bundle/ruby/3.4.0/gems/nio4r-2.7.4/lib/nio4r_ext.so +0 -0
- data/vendor/bundle/ruby/3.4.0/gems/ostruct-0.6.3/BSDL +22 -0
- data/vendor/bundle/ruby/3.4.0/gems/ostruct-0.6.3/COPYING +56 -0
- data/vendor/bundle/ruby/3.4.0/gems/ostruct-0.6.3/Gemfile +10 -0
- data/vendor/bundle/ruby/3.4.0/gems/ostruct-0.6.3/README.md +69 -0
- data/vendor/bundle/ruby/3.4.0/gems/ostruct-0.6.3/Rakefile +18 -0
- data/vendor/bundle/ruby/3.4.0/gems/ostruct-0.6.3/bin/console +14 -0
- data/vendor/bundle/ruby/3.4.0/gems/ostruct-0.6.3/lib/ostruct.rb +492 -0
- data/vendor/bundle/ruby/3.4.0/gems/ostruct-0.6.3/ostruct.gemspec +26 -0
- data/vendor/bundle/ruby/3.4.0/gems/prism-1.9.0/ext/prism/Makefile +3 -3
- data/vendor/bundle/ruby/3.4.0/gems/prism-1.9.0/lib/prism/prism.so +0 -0
- data/vendor/bundle/ruby/3.4.0/gems/psych-5.2.6/ext/psych/Makefile +3 -3
- data/vendor/bundle/ruby/3.4.0/gems/psych-5.2.6/lib/psych.so +0 -0
- data/vendor/bundle/ruby/3.4.0/gems/racc-1.8.1/ext/racc/cparse/Makefile +3 -3
- data/vendor/bundle/ruby/3.4.0/gems/racc-1.8.1/lib/racc/cparse.so +0 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/LICENSE.txt +20 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/README.md +255 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/config/default.yml +6146 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cache_config.rb +58 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cli/command/lsp.rb +19 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cli.rb +247 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/comment_config.rb +261 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/config_loader.rb +269 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/bundler/gem_version.rb +132 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/correctors/alignment_corrector.rb +144 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/example_heredoc_delimiter.rb +111 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/node_matcher_directive.rb +241 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/internal_affairs/useless_message_assertion.rb +49 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/case_indentation.rb +221 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/class_structure.rb +388 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/empty_lines_after_module_inclusion.rb +101 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/first_argument_indentation.rb +315 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/first_array_element_line_break.rb +94 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/first_hash_element_line_break.rb +68 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/heredoc_indentation.rb +195 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/indentation_width.rb +493 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/line_length.rb +431 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/multiline_array_brace_layout.rb +115 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/multiline_hash_brace_layout.rb +115 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/multiline_method_call_indentation.rb +403 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/layout/space_in_lambda_literal.rb +78 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/duplicate_methods.rb +398 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/float_comparison.rb +136 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/literal_as_condition.rb +283 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/redundant_splat_expansion.rb +216 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/struct_new_override.rb +75 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/to_json.rb +45 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/useless_or.rb +111 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/lint/utils/nil_receiver_checker.rb +121 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/mixin/hash_shorthand_syntax.rb +236 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/naming/predicate_method.rb +330 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/naming/predicate_prefix.rb +204 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/offense.rb +246 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/security/json_load.rb +69 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/access_modifier_declarations.rb +364 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/block_delimiters.rb +504 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/documentation.rb +198 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/documentation_method.rb +152 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/empty_class_definition.rb +96 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/format_string_token.rb +272 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/guard_clause.rb +321 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/hash_as_last_array_item.rb +102 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/hash_lookup_method.rb +94 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/if_unless_modifier.rb +351 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/if_unless_modifier_of_if_unless.rb +44 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/if_with_boolean_literal_branches.rb +166 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/lambda_call.rb +79 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/method_def_parentheses.rb +178 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/module_member_existence_check.rb +117 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/multiline_if_then.rb +42 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/negative_array_index.rb +220 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/preferred_hash_methods.rb +74 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/redundant_condition.rb +345 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/style/reverse_find.rb +51 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/team.rb +290 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/cop/variable_force/branch.rb +355 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/formatter/clang_style_formatter.rb +58 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/formatter/formatter_set.rb +114 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/formatter/tap_formatter.rb +85 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/lsp/diagnostic.rb +173 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/lsp/disable_comment_edits.rb +135 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/lsp/routes.rb +256 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/lsp/runtime.rb +79 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/lsp/stdin_runner.rb +76 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/remote_config.rb +114 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/rspec/shared_contexts.rb +275 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/rspec/support.rb +35 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/server/cache.rb +187 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/target_ruby.rb +308 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop/version.rb +160 -0
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.84.2/lib/rubocop.rb +830 -0
- data/vendor/bundle/ruby/3.4.0/gems/standard-1.54.0/CHANGELOG.md +716 -0
- data/vendor/bundle/ruby/3.4.0/gems/standard-1.54.0/Gemfile.lock +89 -0
- data/vendor/bundle/ruby/3.4.0/gems/standard-1.54.0/bin/setup +8 -0
- data/vendor/bundle/ruby/3.4.0/gems/standard-1.54.0/config/base.yml +1981 -0
- data/vendor/bundle/ruby/3.4.0/gems/standard-1.54.0/config/ruby-3.3.yml +7 -0
- data/vendor/bundle/ruby/3.4.0/gems/standard-1.54.0/config/ruby-3.4.yml +7 -0
- data/vendor/bundle/ruby/3.4.0/gems/standard-1.54.0/lib/standard/version.rb +3 -0
- data/vendor/bundle/ruby/3.4.0/gems/standard-1.54.0/standard.gemspec +32 -0
- data/vendor/bundle/ruby/3.4.0/gems/stringio-3.1.7/ext/stringio/Makefile +3 -3
- data/vendor/bundle/ruby/3.4.0/gems/stringio-3.1.7/lib/stringio.so +0 -0
- data/vendor/bundle/ruby/3.4.0/gems/websocket-driver-0.8.0/ext/websocket-driver/Makefile +3 -3
- data/vendor/bundle/ruby/3.4.0/gems/websocket-driver-0.8.0/lib/websocket_mask.so +0 -0
- data/vendor/bundle/ruby/3.4.0/specifications/json-2.18.1.gemspec +0 -0
- data/vendor/bundle/ruby/3.4.0/specifications/ostruct-0.6.3.gemspec +22 -0
- data/vendor/bundle/ruby/3.4.0/specifications/rubocop-1.84.2.gemspec +39 -0
- data/vendor/bundle/ruby/3.4.0/specifications/standard-1.54.0.gemspec +31 -0
- metadata +1127 -1030
- data/vendor/bundle/ruby/3.4.0/cache/json-2.18.0.gem +0 -0
- data/vendor/bundle/ruby/3.4.0/cache/rubocop-1.82.1.gem +0 -0
- data/vendor/bundle/ruby/3.4.0/cache/standard-1.53.0.gem +0 -0
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/json-2.18.0/gem_make.out +0 -25
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/json-2.18.0/json/ext/generator.so +0 -0
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/json-2.18.0/json/ext/parser.so +0 -0
- data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/json-2.18.0/mkmf.log +0 -165
- data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/CHANGES.md +0 -728
- data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/ext/json/ext/fbuffer/fbuffer.h +0 -247
- data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/ext/json/ext/generator/Makefile +0 -273
- data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/ext/json/ext/generator/generator.c +0 -2202
- data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/ext/json/ext/json.h +0 -97
- data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/ext/json/ext/parser/Makefile +0 -273
- data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/ext/json/ext/parser/parser.c +0 -1679
- data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/ext/json/ext/simd/simd.h +0 -191
- data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/ext/json/ext/vendor/fpconv.c +0 -480
- data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/lib/json/ext/generator.so +0 -0
- data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/lib/json/ext/parser.so +0 -0
- data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/lib/json/version.rb +0 -5
- data/vendor/bundle/ruby/3.4.0/gems/json-2.18.0/lib/json.rb +0 -642
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/LICENSE.txt +0 -20
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/README.md +0 -255
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/config/default.yml +0 -6099
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cache_config.rb +0 -29
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cli/command/lsp.rb +0 -19
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cli.rb +0 -228
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/comment_config.rb +0 -261
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/config_loader.rb +0 -273
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/bundler/gem_version.rb +0 -132
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/correctors/alignment_corrector.rb +0 -126
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/internal_affairs/example_heredoc_delimiter.rb +0 -111
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/internal_affairs/node_matcher_directive.rb +0 -241
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/internal_affairs/useless_message_assertion.rb +0 -49
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/case_indentation.rb +0 -219
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/class_structure.rb +0 -381
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/empty_lines_after_module_inclusion.rb +0 -101
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/first_argument_indentation.rb +0 -282
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/first_array_element_line_break.rb +0 -68
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/first_hash_element_line_break.rb +0 -68
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/heredoc_indentation.rb +0 -162
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/indentation_width.rb +0 -400
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/line_length.rb +0 -428
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/multiline_array_brace_layout.rb +0 -115
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/multiline_hash_brace_layout.rb +0 -115
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/multiline_method_call_indentation.rb +0 -267
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/layout/space_in_lambda_literal.rb +0 -78
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/lint/duplicate_methods.rb +0 -346
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/lint/float_comparison.rb +0 -136
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/lint/literal_as_condition.rb +0 -283
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/lint/redundant_splat_expansion.rb +0 -216
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/lint/struct_new_override.rb +0 -59
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/lint/to_json.rb +0 -49
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/lint/useless_or.rb +0 -111
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/lint/utils/nil_receiver_checker.rb +0 -121
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/mixin/hash_shorthand_syntax.rb +0 -236
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/naming/predicate_method.rb +0 -319
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/naming/predicate_prefix.rb +0 -204
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/offense.rb +0 -238
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/security/json_load.rb +0 -69
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/access_modifier_declarations.rb +0 -365
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/block_delimiters.rb +0 -503
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/documentation.rb +0 -198
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/documentation_method.rb +0 -152
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/format_string_token.rb +0 -255
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/guard_clause.rb +0 -308
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/hash_as_last_array_item.rb +0 -100
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/if_unless_modifier.rb +0 -322
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/if_unless_modifier_of_if_unless.rb +0 -44
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/if_with_boolean_literal_branches.rb +0 -163
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/lambda_call.rb +0 -79
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/method_def_parentheses.rb +0 -180
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/module_member_existence_check.rb +0 -74
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/multiline_if_then.rb +0 -44
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/preferred_hash_methods.rb +0 -74
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/style/redundant_condition.rb +0 -342
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/team.rb +0 -290
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/cop/variable_force/branch.rb +0 -331
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/formatter/clang_style_formatter.rb +0 -55
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/formatter/formatter_set.rb +0 -114
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/formatter/tap_formatter.rb +0 -82
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/lsp/diagnostic.rb +0 -185
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/lsp/routes.rb +0 -256
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/lsp/runtime.rb +0 -69
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/lsp/stdin_runner.rb +0 -69
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/remote_config.rb +0 -111
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/rspec/shared_contexts.rb +0 -271
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/rspec/support.rb +0 -34
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/server/cache.rb +0 -208
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/target_ruby.rb +0 -306
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop/version.rb +0 -160
- data/vendor/bundle/ruby/3.4.0/gems/rubocop-1.82.1/lib/rubocop.rb +0 -826
- data/vendor/bundle/ruby/3.4.0/gems/standard-1.53.0/CHANGELOG.md +0 -712
- data/vendor/bundle/ruby/3.4.0/gems/standard-1.53.0/Gemfile.lock +0 -89
- data/vendor/bundle/ruby/3.4.0/gems/standard-1.53.0/config/base.yml +0 -1969
- data/vendor/bundle/ruby/3.4.0/gems/standard-1.53.0/config/ruby-3.3.yml +0 -7
- data/vendor/bundle/ruby/3.4.0/gems/standard-1.53.0/lib/standard/version.rb +0 -3
- data/vendor/bundle/ruby/3.4.0/gems/standard-1.53.0/standard.gemspec +0 -32
- data/vendor/bundle/ruby/3.4.0/specifications/json-2.18.0.gemspec +0 -0
- data/vendor/bundle/ruby/3.4.0/specifications/rubocop-1.82.1.gemspec +0 -39
- data/vendor/bundle/ruby/3.4.0/specifications/standard-1.53.0.gemspec +0 -31
- /data/vendor/bundle/ruby/3.4.0/extensions/x86_64-linux/3.4.0/{json-2.18.0 → json-2.18.1}/gem.build_complete +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/BSDL +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/COPYING +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/LEGAL +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/README.md +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/ext/json/ext/generator/extconf.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/ext/json/ext/parser/extconf.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/ext/json/ext/simd/conf.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/ext/json/ext/vendor/jeaiii-ltoa.h +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/ext/json/ext/vendor/ryu.h +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/json.gemspec +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/bigdecimal.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/complex.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/core.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/date.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/date_time.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/exception.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/ostruct.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/range.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/rational.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/regexp.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/set.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/string.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/struct.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/symbol.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/add/time.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/common.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/ext/generator/state.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/ext.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/generic_object.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{json-2.18.0 → json-2.18.1}/lib/json/truffle_ruby/generator.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → ostruct-0.6.3}/bin/setup +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/assets/logo.png +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/assets/output.css.erb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/assets/output.html.erb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/config/internal_affairs.yml +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/config/obsoletion.yml +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/exe/rubocop +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/arguments_env.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/arguments_file.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/ast_aliases.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cached_data.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cli/command/auto_generate_config.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cli/command/base.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cli/command/execute_runner.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cli/command/init_dotfile.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cli/command/show_cops.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cli/command/show_docs_url.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cli/command/suggest_extensions.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cli/command/version.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cli/command.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cli/environment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_finder.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_loader_resolver.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_obsoletion/changed_enforced_styles.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_obsoletion/changed_parameter.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_obsoletion/cop_rule.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_obsoletion/extracted_cop.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_obsoletion/parameter_rule.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_obsoletion/removed_cop.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_obsoletion/renamed_cop.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_obsoletion/rule.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_obsoletion/split_cop.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_obsoletion.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_regeneration.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_store.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/config_validator.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/autocorrect_logic.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/badge.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/base.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/bundler/duplicated_gem.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/bundler/duplicated_group.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/bundler/gem_comment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/bundler/gem_filename.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/bundler/insecure_protocol_source.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/bundler/ordered_gems.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/commissioner.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/cop.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/corrector.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/condition_corrector.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/each_to_for_corrector.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/empty_line_corrector.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/for_to_each_corrector.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/if_then_corrector.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/lambda_literal_to_method_corrector.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/line_break_corrector.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/multiline_literal_brace_corrector.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/ordered_gem_corrector.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/parentheses_corrector.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/percent_literal_corrector.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/punctuation_corrector.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/require_library_corrector.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/space_corrector.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/string_literal_corrector.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/correctors/unused_arg_corrector.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/documentation.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/exclude_limit.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/force.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/gemspec/add_runtime_dependency.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/gemspec/attribute_assignment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/gemspec/dependency_version.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/gemspec/deprecated_attribute_assignment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/gemspec/development_dependencies.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/gemspec/duplicated_assignment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/gemspec/ordered_dependencies.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/gemspec/require_mfa.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/gemspec/required_ruby_version.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/gemspec/ruby_version_globals_usage.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/generator/configuration_injector.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/generator/require_file_injector.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/generator.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/ignored_node.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/cop_description.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/cop_enabled.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/create_empty_file.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/empty_line_between_expect_offense_and_correction.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/example_description.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/inherit_deprecated_cop_class.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/lambda_or_proc.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/location_exists.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/location_expression.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/location_line_equality_comparison.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/method_name_end_with.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/method_name_equal.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/node_destructuring.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/node_first_or_last_argument.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/node_pattern_groups/ast_processor.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/node_pattern_groups/ast_walker.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/node_pattern_groups.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/node_type_group.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/node_type_multiple_predicates.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/node_type_predicate.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/numblock_handler.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/offense_location_keyword.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/on_send_without_on_csend.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/operator_keyword.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/plugin.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/processed_source_buffer_name.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/redundant_context_config_parameter.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/redundant_described_class_as_subject.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/redundant_expect_offense_arguments.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/redundant_let_rubocop_config_new.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/redundant_location_argument.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/redundant_message_argument.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/redundant_source_range.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/single_line_comparison.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/style_detected_api_use.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/undefined_config.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs/useless_restrict_on_send.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/internal_affairs.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/access_modifier_indentation.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/argument_alignment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/array_alignment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/assignment_indentation.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/begin_end_alignment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/block_alignment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/block_end_newline.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/closing_heredoc_indentation.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/closing_parenthesis_indentation.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/comment_indentation.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/condition_position.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/def_end_alignment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/dot_position.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/else_alignment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_comment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_line_after_guard_clause.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_line_after_magic_comment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_line_after_multiline_condition.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_line_between_defs.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_lines.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_lines_around_arguments.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_lines_around_attribute_accessor.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_lines_around_begin_body.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_lines_around_block_body.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_lines_around_class_body.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_lines_around_exception_handling_keywords.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_lines_around_method_body.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/empty_lines_around_module_body.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/end_alignment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/end_of_line.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/extra_spacing.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/first_array_element_indentation.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/first_hash_element_indentation.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/first_method_argument_line_break.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/first_method_parameter_line_break.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/first_parameter_indentation.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/hash_alignment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/indentation_consistency.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/indentation_style.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/initial_indentation.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/leading_comment_space.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/leading_empty_lines.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/line_continuation_leading_space.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/line_continuation_spacing.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/line_end_string_concatenation_indentation.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/multiline_array_line_breaks.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/multiline_assignment_layout.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/multiline_block_layout.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/multiline_method_call_brace_layout.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/multiline_method_definition_brace_layout.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/multiline_method_parameter_line_breaks.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/multiline_operation_indentation.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/parameter_alignment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/redundant_line_break.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/rescue_ensure_alignment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/single_line_block_chain.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_after_colon.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_after_comma.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_after_method_name.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_after_not.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_after_semicolon.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_around_block_parameters.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_around_equals_in_parameter_default.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_around_keyword.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_around_method_call_operator.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_around_operators.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_before_block_braces.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_before_brackets.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_before_comma.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_before_comment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_before_first_arg.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_before_semicolon.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_inside_array_literal_brackets.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_inside_array_percent_literal.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_inside_block_braces.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_inside_hash_literal_braces.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_inside_parens.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_inside_percent_literal_delimiters.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_inside_range_literal.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_inside_reference_brackets.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/space_inside_string_interpolation.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/trailing_empty_lines.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/layout/trailing_whitespace.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/legacy/corrections_proxy.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/legacy/corrector.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/ambiguous_assignment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/ambiguous_block_association.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/ambiguous_operator.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/ambiguous_operator_precedence.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/ambiguous_range.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/ambiguous_regexp_literal.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/array_literal_in_regexp.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/assignment_in_condition.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/big_decimal_new.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/binary_operator_with_identical_operands.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/boolean_symbol.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/circular_argument_reference.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/constant_definition_in_block.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/constant_overwritten_in_rescue.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/constant_reassignment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/constant_resolution.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/cop_directive_syntax.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/debugger.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/deprecated_class_methods.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/deprecated_constants.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/deprecated_open_ssl_constant.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/disjunctive_assignment_in_constructor.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/duplicate_branch.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/duplicate_case_condition.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/duplicate_elsif_condition.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/duplicate_hash_key.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/duplicate_magic_comment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/duplicate_match_pattern.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/duplicate_regexp_character_class_element.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/duplicate_require.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/duplicate_rescue_exception.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/duplicate_set_element.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/each_with_object_argument.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/else_layout.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/empty_block.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/empty_class.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/empty_conditional_body.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/empty_ensure.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/empty_expression.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/empty_file.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/empty_in_pattern.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/empty_interpolation.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/empty_when.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/ensure_return.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/erb_new_arguments.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/flip_flop.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/float_out_of_range.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/format_parameter_mismatch.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/hash_compare_by_identity.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/hash_new_with_keyword_arguments_as_default.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/heredoc_method_call_position.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/identity_comparison.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/implicit_string_concatenation.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/incompatible_io_select_with_fiber_scheduler.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/ineffective_access_modifier.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/inherit_exception.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/interpolation_check.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/it_without_arguments_in_block.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/lambda_without_literal_block.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/literal_assignment_in_condition.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/literal_in_interpolation.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/loop.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/missing_cop_enable_directive.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/missing_super.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/mixed_case_range.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/mixed_regexp_capture_types.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/multiple_comparison.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/nested_method_definition.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/nested_percent_literal.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/next_without_accumulator.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/no_return_in_begin_end_blocks.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/non_atomic_file_operation.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/non_deterministic_require_order.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/non_local_exit_from_iterator.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/number_conversion.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/numbered_parameter_assignment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/numeric_operation_with_constant_result.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/or_assignment_to_constant.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/ordered_magic_comments.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/out_of_range_regexp_ref.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/parentheses_as_grouped_expression.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/percent_string_array.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/percent_symbol_array.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/raise_exception.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/rand_one.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/redundant_cop_disable_directive.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/redundant_cop_enable_directive.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/redundant_dir_glob_sort.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/redundant_regexp_quantifiers.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/redundant_require_statement.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/redundant_safe_navigation.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/redundant_string_coercion.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/redundant_type_conversion.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/redundant_with_index.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/redundant_with_object.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/refinement_import_methods.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/regexp_as_condition.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/require_parentheses.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/require_range_parentheses.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/require_relative_self_path.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/rescue_exception.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/rescue_type.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/return_in_void_context.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/safe_navigation_chain.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/safe_navigation_consistency.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/safe_navigation_with_empty.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/script_permission.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/self_assignment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/send_with_mixin_argument.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/shadowed_argument.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/shadowed_exception.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/shared_mutable_default.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/suppressed_exception.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/suppressed_exception_in_number_conversion.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/symbol_conversion.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/syntax.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/to_enum_arguments.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/top_level_return_with_argument.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/trailing_comma_in_attribute_declaration.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/triple_quotes.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/underscore_prefixed_variable_name.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/unescaped_bracket_in_regexp.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/unexpected_block_arity.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/unified_integer.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/unmodified_reduce_accumulator.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/unreachable_code.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/unreachable_loop.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/unused_block_argument.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/unused_method_argument.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/uri_escape_unescape.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/uri_regexp.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_access_modifier.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_assignment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_constant_scoping.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_default_value_argument.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_defined.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_else_without_rescue.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_method_definition.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_numeric_operation.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_rescue.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_ruby2_keywords.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_setter_call.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/useless_times.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/lint/void.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/message_annotator.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/abc_size.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/block_length.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/block_nesting.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/class_length.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/collection_literal_length.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/cyclomatic_complexity.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/method_length.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/module_length.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/parameter_lists.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/perceived_complexity.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/utils/abc_size_calculator.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/utils/code_length_calculator.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/utils/iterating_block.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/utils/repeated_attribute_discount.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/metrics/utils/repeated_csend_discount.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/migration/department_name.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/alignment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/allowed_identifiers.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/allowed_methods.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/allowed_pattern.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/allowed_receivers.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/annotation_comment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/array_min_size.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/array_syntax.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/auto_corrector.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/check_assignment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/check_line_breakable.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/check_single_line_suitability.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/code_length.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/comments_help.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/configurable_enforced_style.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/configurable_formatting.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/configurable_max.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/configurable_naming.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/configurable_numbering.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/def_node.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/dig_help.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/documentation_comment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/duplication.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/empty_lines_around_body.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/empty_parameter.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/end_keyword_alignment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/endless_method_rewriter.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/enforce_superclass.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/first_element_line_break.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/forbidden_identifiers.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/forbidden_pattern.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/frozen_string_literal.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/gem_declaration.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/gemspec_help.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/hash_alignment_styles.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/hash_subset.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/hash_transform_method.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/heredoc.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/integer_node.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/interpolation.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/line_length_help.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/match_range.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/method_complexity.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/method_preference.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/min_body_length.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/min_branches_count.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/multiline_element_indentation.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/multiline_element_line_breaks.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/multiline_expression_indentation.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/multiline_literal_brace_layout.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/negative_conditional.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/nil_methods.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/on_normal_if_unless.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/ordered_gem_node.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/parentheses.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/percent_array.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/percent_literal.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/preceding_following_alignment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/preferred_delimiters.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/range_help.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/rational_literal.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/require_library.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/rescue_node.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/safe_assignment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/space_after_punctuation.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/space_before_punctuation.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/statement_modifier.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/string_help.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/string_literals_help.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/surrounding_space.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/symbol_help.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/target_ruby_version.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/trailing_body.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/trailing_comma.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/uncommunicative_name.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/unused_argument.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/mixin/visibility_help.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/accessor_method_name.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/ascii_identifiers.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/binary_operator_parameter_name.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/block_forwarding.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/block_parameter_name.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/class_and_module_camel_case.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/constant_name.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/file_name.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/heredoc_delimiter_case.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/heredoc_delimiter_naming.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/inclusive_language.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/memoized_instance_variable_name.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/method_name.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/method_parameter_name.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/variable_name.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/naming/variable_number.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/registry.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/security/compound_hash.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/security/eval.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/security/io_methods.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/security/marshal_load.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/security/open.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/security/yaml_load.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/severity.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/accessor_grouping.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/alias.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/ambiguous_endless_method_definition.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/and_or.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/arguments_forwarding.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/array_coercion.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/array_first_last.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/array_intersect.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/array_intersect_with_single_element.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/array_join.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/ascii_comments.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/attr.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/auto_resource_cleanup.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/bare_percent_literals.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/begin_block.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/bisected_attr_accessor/macro.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/bisected_attr_accessor.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/bitwise_predicate.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/block_comments.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/case_equality.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/case_like_if.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/character_literal.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/class_and_module_children.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/class_check.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/class_equality_comparison.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/class_methods.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/class_methods_definitions.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/class_vars.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/collection_compact.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/collection_methods.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/collection_querying.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/colon_method_call.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/colon_method_definition.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/combinable_defined.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/combinable_loops.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/command_literal.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/comment_annotation.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/commented_keyword.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/comparable_between.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/comparable_clamp.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/concat_array_literals.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/conditional_assignment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/constant_visibility.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/copyright.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/data_inheritance.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/date_time.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/def_with_parentheses.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/dig_chain.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/dir.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/dir_empty.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/disable_cops_within_source_code_directive.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/document_dynamic_eval_definition.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/double_cop_disable_directive.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/double_negation.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/each_for_simple_loop.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/each_with_object.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/empty_block_parameter.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/empty_case_condition.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/empty_else.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/empty_heredoc.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/empty_lambda_parameter.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/empty_literal.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/empty_method.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/empty_string_inside_interpolation.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/encoding.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/end_block.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/endless_method.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/env_home.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/eval_with_location.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/even_odd.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/exact_regexp_match.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/expand_path_arguments.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/explicit_block_argument.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/exponential_notation.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/fetch_env_var.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/file_empty.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/file_null.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/file_read.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/file_touch.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/file_write.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/float_division.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/for.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/format_string.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/frozen_string_literal_comment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/global_std_stream.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/global_vars.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/hash_conversion.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/hash_each_methods.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/hash_except.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/hash_fetch_chain.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/hash_like_case.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/hash_slice.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/hash_syntax.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/hash_transform_keys.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/hash_transform_values.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/identical_conditional_branches.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/if_inside_else.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/if_with_semicolon.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/implicit_runtime_error.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/in_pattern_then.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/infinite_loop.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/inline_comment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/inverse_methods.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/invertible_unless_condition.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/ip_addresses.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/it_assignment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/it_block_parameter.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/keyword_arguments_merging.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/keyword_parameters_order.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/lambda.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/line_end_concatenation.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/magic_comment_format.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/map_compact_with_conditional_block.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/map_into_array.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/map_to_hash.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/map_to_set.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/method_call_with_args_parentheses/omit_parentheses.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/method_call_with_args_parentheses/require_parentheses.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/method_call_without_args_parentheses.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/method_called_on_do_end_block.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/min_max.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/min_max_comparison.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/missing_else.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/missing_respond_to_missing.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/mixin_grouping.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/mixin_usage.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/module_function.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/multiline_block_chain.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/multiline_if_modifier.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/multiline_in_pattern_then.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/multiline_memoization.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/multiline_method_signature.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/multiline_ternary_operator.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/multiline_when_then.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/multiple_comparison.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/mutable_constant.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/negated_if.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/negated_if_else_condition.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/negated_unless.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/negated_while.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/nested_file_dirname.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/nested_modifier.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/nested_parenthesized_calls.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/nested_ternary_operator.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/next.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/nil_comparison.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/nil_lambda.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/non_nil_check.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/not.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/numbered_parameters.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/numbered_parameters_limit.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/numeric_literal_prefix.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/numeric_literals.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/numeric_predicate.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/object_then.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/one_line_conditional.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/open_struct_use.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/operator_method_call.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/option_hash.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/optional_arguments.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/optional_boolean_parameter.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/or_assignment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/parallel_assignment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/parentheses_around_condition.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/percent_literal_delimiters.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/percent_q_literals.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/perl_backrefs.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/proc.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/quoted_symbols.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/raise_args.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/random_with_offset.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_argument.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_array_constructor.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_array_flatten.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_assignment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_begin.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_capital_w.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_conditional.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_constant_base.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_current_directory_in_path.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_double_splat_hash_braces.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_each.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_exception.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_fetch_block.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_file_extension_in_require.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_filter_chain.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_format.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_freeze.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_heredoc_delimiter_quotes.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_initialize.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_interpolation.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_interpolation_unfreeze.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_line_continuation.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_parentheses.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_percent_q.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_regexp_argument.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_regexp_character_class.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_regexp_constructor.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_regexp_escape.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_return.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_self.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_self_assignment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_self_assignment_branch.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_sort.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_sort_by.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/redundant_string_escape.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/regexp_literal.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/require_order.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/rescue_modifier.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/rescue_standard_error.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/return_nil.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/return_nil_in_predicate_method_definition.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/safe_navigation.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/safe_navigation_chain_length.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/sample.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/select_by_regexp.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/self_assignment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/semicolon.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/send.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/send_with_literal_method_name.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/signal_exception.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/single_argument_dig.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/single_line_block_params.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/single_line_do_end_block.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/single_line_methods.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/slicing_with_range.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/sole_nested_conditional.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/special_global_vars.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/stabby_lambda_parentheses.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/static_class.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/stderr_puts.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/string_chars.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/string_concatenation.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/string_hash_keys.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/string_literals.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/string_literals_in_interpolation.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/string_methods.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/strip.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/struct_inheritance.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/super_arguments.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/super_with_args_parentheses.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/swap_values.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/symbol_array.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/symbol_literal.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/symbol_proc.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/ternary_parentheses.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/top_level_method_definition.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/trailing_body_on_class.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/trailing_body_on_method_definition.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/trailing_body_on_module.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/trailing_comma_in_arguments.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/trailing_comma_in_array_literal.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/trailing_comma_in_block_args.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/trailing_comma_in_hash_literal.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/trailing_method_end_statement.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/trailing_underscore_variable.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/trivial_accessors.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/unless_else.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/unless_logical_operators.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/unpack_first.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/variable_interpolation.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/when_then.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/while_until_do.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/while_until_modifier.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/word_array.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/yaml_file_read.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/yoda_condition.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/yoda_expression.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/style/zero_length_predicate.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/util.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/utils/format_string.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/variable_force/assignment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/variable_force/branchable.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/variable_force/reference.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/variable_force/scope.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/variable_force/variable.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/variable_force/variable_table.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cop/variable_force.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/cops_documentation_generator.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/core_ext/string.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/directive_comment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/error.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/ext/comment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/ext/processed_source.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/ext/range.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/ext/regexp_node.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/ext/regexp_parser.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/feature_loader.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/file_finder.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/file_patterns.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/auto_gen_config_formatter.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/base_formatter.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/colorizable.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/disabled_config_formatter.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/emacs_style_formatter.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/file_list_formatter.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/fuubar_style_formatter.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/github_actions_formatter.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/html_formatter.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/json_formatter.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/junit_formatter.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/markdown_formatter.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/offense_count_formatter.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/pacman_formatter.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/progress_formatter.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/quiet_formatter.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/simple_text_formatter.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/text_util.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter/worst_offenders_formatter.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/formatter.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/lockfile.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/lsp/logger.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/lsp/server.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/lsp/severity.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/lsp.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/magic_comment.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/name_similarity.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/options.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/path_util.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/pending_cops_reporter.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/platform.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/plugin/configuration_integrator.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/plugin/load_error.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/plugin/loader.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/plugin/not_supported_error.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/plugin.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/rake_task.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/result_cache.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/rspec/cop_helper.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/rspec/expect_offense.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/rspec/parallel_formatter.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/runner.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/cli.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/client_command/base.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/client_command/exec.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/client_command/restart.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/client_command/start.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/client_command/status.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/client_command/stop.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/client_command.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/core.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/errors.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/helper.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/server_command/base.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/server_command/exec.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/server_command/stop.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/server_command.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server/socket_reader.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/server.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/string_interpreter.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/target_finder.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/util.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/warning.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/rubocop/yaml_duplication_checker.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/ruby_lsp/rubocop/addon.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{rubocop-1.82.1 → rubocop-1.84.2}/lib/ruby_lsp/rubocop/runtime_adapter.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/Gemfile +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/LICENSE.txt +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/README.md +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/Rakefile +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/bin/console +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/bin/rake +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/bin/run +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/default.yml +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-1.8.yml +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-1.9.yml +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-2.0.yml +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-2.1.yml +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-2.2.yml +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-2.3.yml +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-2.4.yml +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-2.5.yml +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-2.6.yml +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-2.7.yml +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-3.0.yml +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-3.1.yml +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/config/ruby-3.2.yml +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/docs/ARCHITECTURE.md +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/docs/RELEASE.md +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/docs/RUBY_VERSIONS.md +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/docs/UPGRADING.md +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/exe/standardrb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/ruby_lsp/standard/addon.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/ruby_lsp/standard/wraps_built_in_lsp_standardizer.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/base/plugin.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/base.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/builds_config.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/cli.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/creates_config_store/assigns_rubocop_yaml.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/creates_config_store/configures_ignored_paths.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/creates_config_store/merges_user_config_extensions.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/creates_config_store/sets_target_ruby_version.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/creates_config_store.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/file_finder.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/formatter.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/loads_runner.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/loads_yaml_config.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/lsp/diagnostic.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/lsp/kills_server.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/lsp/logger.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/lsp/routes.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/lsp/server.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/lsp/standardizer.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/lsp/stdin_rubocop_runner.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/merges_settings.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/plugin/combines_plugin_configs.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/plugin/creates_runner_context.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/plugin/determines_class_constant.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/plugin/initializes_plugins.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/plugin/merges_plugins_into_rubocop_config.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/plugin/standardizes_configured_plugins.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/plugin.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/railtie.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/rake.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/resolves_yaml_option.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/rubocop/ext.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/runners/genignore.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/runners/help.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/runners/lsp.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/runners/rubocop.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/runners/verbose_version.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard/runners/version.rb +0 -0
- /data/vendor/bundle/ruby/3.4.0/gems/{standard-1.53.0 → standard-1.54.0}/lib/standard.rb +0 -0
|
@@ -1,238 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module RuboCop
|
|
4
|
-
module Cop
|
|
5
|
-
# An offense represents a style violation detected by RuboCop.
|
|
6
|
-
class Offense
|
|
7
|
-
include Comparable
|
|
8
|
-
|
|
9
|
-
# @api private
|
|
10
|
-
COMPARISON_ATTRIBUTES = %i[line column cop_name message severity].freeze
|
|
11
|
-
|
|
12
|
-
# @api public
|
|
13
|
-
#
|
|
14
|
-
# @!attribute [r] severity
|
|
15
|
-
#
|
|
16
|
-
# @return [RuboCop::Cop::Severity]
|
|
17
|
-
attr_reader :severity
|
|
18
|
-
|
|
19
|
-
# @api public
|
|
20
|
-
#
|
|
21
|
-
# @!attribute [r] location
|
|
22
|
-
#
|
|
23
|
-
# @return [Parser::Source::Range]
|
|
24
|
-
# the location where the violation is detected.
|
|
25
|
-
#
|
|
26
|
-
# @see https://www.rubydoc.info/gems/parser/Parser/Source/Range
|
|
27
|
-
# Parser::Source::Range
|
|
28
|
-
attr_reader :location
|
|
29
|
-
|
|
30
|
-
# @api public
|
|
31
|
-
#
|
|
32
|
-
# @!attribute [r] message
|
|
33
|
-
#
|
|
34
|
-
# @return [String]
|
|
35
|
-
# human-readable message
|
|
36
|
-
#
|
|
37
|
-
# @example
|
|
38
|
-
# 'Line is too long. [90/80]'
|
|
39
|
-
attr_reader :message
|
|
40
|
-
|
|
41
|
-
# @api public
|
|
42
|
-
#
|
|
43
|
-
# @!attribute [r] cop_name
|
|
44
|
-
#
|
|
45
|
-
# @return [String]
|
|
46
|
-
# the cop name as a String for which this offense is for.
|
|
47
|
-
#
|
|
48
|
-
# @example
|
|
49
|
-
# 'Layout/LineLength'
|
|
50
|
-
attr_reader :cop_name
|
|
51
|
-
|
|
52
|
-
# @api private
|
|
53
|
-
attr_reader :status
|
|
54
|
-
|
|
55
|
-
# @api public
|
|
56
|
-
#
|
|
57
|
-
# @!attribute [r] corrector
|
|
58
|
-
#
|
|
59
|
-
# @return [Corrector | nil]
|
|
60
|
-
# the autocorrection for this offense, or `nil` when not available
|
|
61
|
-
attr_reader :corrector
|
|
62
|
-
|
|
63
|
-
PseudoSourceRange = Struct.new(:line, :column, :source_line, :begin_pos,
|
|
64
|
-
:end_pos) do
|
|
65
|
-
alias_method :first_line, :line
|
|
66
|
-
alias_method :last_line, :line
|
|
67
|
-
alias_method :last_column, :column
|
|
68
|
-
|
|
69
|
-
def column_range
|
|
70
|
-
column...last_column
|
|
71
|
-
end
|
|
72
|
-
|
|
73
|
-
def size
|
|
74
|
-
end_pos - begin_pos
|
|
75
|
-
end
|
|
76
|
-
alias_method :length, :size
|
|
77
|
-
end
|
|
78
|
-
private_constant :PseudoSourceRange
|
|
79
|
-
|
|
80
|
-
NO_LOCATION = PseudoSourceRange.new(1, 0, '', 0, 0).freeze
|
|
81
|
-
|
|
82
|
-
# @api private
|
|
83
|
-
def initialize(severity, location, message, cop_name, # rubocop:disable Metrics/ParameterLists
|
|
84
|
-
status = :uncorrected, corrector = nil)
|
|
85
|
-
@severity = RuboCop::Cop::Severity.new(severity)
|
|
86
|
-
@location = location
|
|
87
|
-
@message = message.freeze
|
|
88
|
-
@cop_name = cop_name.freeze
|
|
89
|
-
@status = status
|
|
90
|
-
@corrector = corrector
|
|
91
|
-
freeze
|
|
92
|
-
end
|
|
93
|
-
|
|
94
|
-
# @api public
|
|
95
|
-
#
|
|
96
|
-
# @!attribute [r] correctable?
|
|
97
|
-
#
|
|
98
|
-
# @return [Boolean]
|
|
99
|
-
# whether this offense can be automatically corrected via autocorrect.
|
|
100
|
-
# This includes todo comments, for example when requested with `--disable-uncorrectable`.
|
|
101
|
-
def correctable?
|
|
102
|
-
@status != :unsupported
|
|
103
|
-
end
|
|
104
|
-
|
|
105
|
-
# @api public
|
|
106
|
-
#
|
|
107
|
-
# @!attribute [r] corrected?
|
|
108
|
-
#
|
|
109
|
-
# @return [Boolean]
|
|
110
|
-
# whether this offense is automatically corrected via
|
|
111
|
-
# autocorrect or a todo.
|
|
112
|
-
def corrected?
|
|
113
|
-
@status == :corrected || @status == :corrected_with_todo
|
|
114
|
-
end
|
|
115
|
-
|
|
116
|
-
# @api public
|
|
117
|
-
#
|
|
118
|
-
# @!attribute [r] corrected_with_todo?
|
|
119
|
-
#
|
|
120
|
-
# @return [Boolean]
|
|
121
|
-
# whether this offense is automatically disabled via a todo.
|
|
122
|
-
def corrected_with_todo?
|
|
123
|
-
@status == :corrected_with_todo
|
|
124
|
-
end
|
|
125
|
-
|
|
126
|
-
# @api public
|
|
127
|
-
#
|
|
128
|
-
# @!attribute [r] disabled?
|
|
129
|
-
#
|
|
130
|
-
# @return [Boolean]
|
|
131
|
-
# whether this offense was locally disabled with a
|
|
132
|
-
# disable or todo where it occurred.
|
|
133
|
-
def disabled?
|
|
134
|
-
@status == :disabled || @status == :todo
|
|
135
|
-
end
|
|
136
|
-
|
|
137
|
-
# @api public
|
|
138
|
-
#
|
|
139
|
-
# @return [Parser::Source::Range]
|
|
140
|
-
# the range of the code that is highlighted
|
|
141
|
-
def highlighted_area
|
|
142
|
-
Parser::Source::Range.new(source_line, column, column + column_length)
|
|
143
|
-
end
|
|
144
|
-
|
|
145
|
-
# @api private
|
|
146
|
-
# This is just for debugging purpose.
|
|
147
|
-
def to_s
|
|
148
|
-
format('%<severity>s:%3<line>d:%3<column>d: %<message>s',
|
|
149
|
-
severity: severity.code, line: line,
|
|
150
|
-
column: real_column, message: message)
|
|
151
|
-
end
|
|
152
|
-
|
|
153
|
-
# @api private
|
|
154
|
-
def line
|
|
155
|
-
location.line
|
|
156
|
-
end
|
|
157
|
-
|
|
158
|
-
# @api private
|
|
159
|
-
def column
|
|
160
|
-
location.column
|
|
161
|
-
end
|
|
162
|
-
|
|
163
|
-
# @api private
|
|
164
|
-
def source_line
|
|
165
|
-
location.source_line
|
|
166
|
-
end
|
|
167
|
-
|
|
168
|
-
# @api private
|
|
169
|
-
def column_length
|
|
170
|
-
if first_line == last_line
|
|
171
|
-
column_range.count
|
|
172
|
-
else
|
|
173
|
-
source_line.length - column
|
|
174
|
-
end
|
|
175
|
-
end
|
|
176
|
-
|
|
177
|
-
# @api private
|
|
178
|
-
def first_line
|
|
179
|
-
location.first_line
|
|
180
|
-
end
|
|
181
|
-
|
|
182
|
-
# @api private
|
|
183
|
-
def last_line
|
|
184
|
-
location.last_line
|
|
185
|
-
end
|
|
186
|
-
|
|
187
|
-
# @api private
|
|
188
|
-
def last_column
|
|
189
|
-
location.last_column
|
|
190
|
-
end
|
|
191
|
-
|
|
192
|
-
# @api private
|
|
193
|
-
def column_range
|
|
194
|
-
location.column_range
|
|
195
|
-
end
|
|
196
|
-
|
|
197
|
-
# @api private
|
|
198
|
-
#
|
|
199
|
-
# Internally we use column number that start at 0, but when
|
|
200
|
-
# outputting column numbers, we want them to start at 1. One
|
|
201
|
-
# reason is that editors, such as Emacs, expect this.
|
|
202
|
-
def real_column
|
|
203
|
-
column + 1
|
|
204
|
-
end
|
|
205
|
-
|
|
206
|
-
# @api public
|
|
207
|
-
#
|
|
208
|
-
# @return [Boolean]
|
|
209
|
-
# returns `true` if two offenses contain same attributes
|
|
210
|
-
def ==(other)
|
|
211
|
-
COMPARISON_ATTRIBUTES.all? do |attribute|
|
|
212
|
-
public_send(attribute) == other.public_send(attribute)
|
|
213
|
-
end
|
|
214
|
-
end
|
|
215
|
-
|
|
216
|
-
alias eql? ==
|
|
217
|
-
|
|
218
|
-
def hash
|
|
219
|
-
COMPARISON_ATTRIBUTES.map { |attribute| public_send(attribute) }.hash
|
|
220
|
-
end
|
|
221
|
-
|
|
222
|
-
# @api public
|
|
223
|
-
#
|
|
224
|
-
# Returns `-1`, `0`, or `+1`
|
|
225
|
-
# if this offense is less than, equal to, or greater than `other`.
|
|
226
|
-
#
|
|
227
|
-
# @return [Integer]
|
|
228
|
-
# comparison result
|
|
229
|
-
def <=>(other)
|
|
230
|
-
COMPARISON_ATTRIBUTES.each do |attribute|
|
|
231
|
-
result = public_send(attribute) <=> other.public_send(attribute)
|
|
232
|
-
return result unless result.zero?
|
|
233
|
-
end
|
|
234
|
-
0
|
|
235
|
-
end
|
|
236
|
-
end
|
|
237
|
-
end
|
|
238
|
-
end
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module RuboCop
|
|
4
|
-
module Cop
|
|
5
|
-
module Security
|
|
6
|
-
# Checks for the use of JSON class methods which have potential
|
|
7
|
-
# security issues.
|
|
8
|
-
#
|
|
9
|
-
# `JSON.load` and similar methods allow deserialization of arbitrary ruby objects:
|
|
10
|
-
#
|
|
11
|
-
# [source,ruby]
|
|
12
|
-
# ----
|
|
13
|
-
# require 'json/add/string'
|
|
14
|
-
# result = JSON.load('{ "json_class": "String", "raw": [72, 101, 108, 108, 111] }')
|
|
15
|
-
# pp result # => "Hello"
|
|
16
|
-
# ----
|
|
17
|
-
#
|
|
18
|
-
# Never use `JSON.load` for untrusted user input. Prefer `JSON.parse` unless you have
|
|
19
|
-
# a concrete use-case for `JSON.load`.
|
|
20
|
-
#
|
|
21
|
-
# NOTE: Starting with `json` gem version 2.8.0, triggering this behavior without explicitly
|
|
22
|
-
# passing the `create_additions` keyword argument emits a deprecation warning, with the
|
|
23
|
-
# goal of being secure by default in the next major version 3.0.0.
|
|
24
|
-
#
|
|
25
|
-
# @safety
|
|
26
|
-
# This cop's autocorrection is unsafe because it's potentially dangerous.
|
|
27
|
-
# If using a stream, like `JSON.load(open('file'))`, you will need to call
|
|
28
|
-
# `#read` manually, like `JSON.parse(open('file').read)`.
|
|
29
|
-
# Other similar issues may apply.
|
|
30
|
-
#
|
|
31
|
-
# @example
|
|
32
|
-
# # bad
|
|
33
|
-
# JSON.load('{}')
|
|
34
|
-
# JSON.restore('{}')
|
|
35
|
-
#
|
|
36
|
-
# # good
|
|
37
|
-
# JSON.parse('{}')
|
|
38
|
-
# JSON.unsafe_load('{}')
|
|
39
|
-
#
|
|
40
|
-
# # good - explicit use of `create_additions` option
|
|
41
|
-
# JSON.load('{}', create_additions: true)
|
|
42
|
-
# JSON.load('{}', create_additions: false)
|
|
43
|
-
#
|
|
44
|
-
class JSONLoad < Base
|
|
45
|
-
extend AutoCorrector
|
|
46
|
-
|
|
47
|
-
MSG = 'Prefer `JSON.parse` over `JSON.%<method>s`.'
|
|
48
|
-
RESTRICT_ON_SEND = %i[load restore].freeze
|
|
49
|
-
|
|
50
|
-
# @!method insecure_json_load(node)
|
|
51
|
-
def_node_matcher :insecure_json_load, <<~PATTERN
|
|
52
|
-
(
|
|
53
|
-
send (const {nil? cbase} :JSON) ${:load :restore}
|
|
54
|
-
...
|
|
55
|
-
!(hash `(sym $:create_additions))
|
|
56
|
-
)
|
|
57
|
-
PATTERN
|
|
58
|
-
|
|
59
|
-
def on_send(node)
|
|
60
|
-
insecure_json_load(node) do |method|
|
|
61
|
-
add_offense(node.loc.selector, message: format(MSG, method: method)) do |corrector|
|
|
62
|
-
corrector.replace(node.loc.selector, 'parse')
|
|
63
|
-
end
|
|
64
|
-
end
|
|
65
|
-
end
|
|
66
|
-
end
|
|
67
|
-
end
|
|
68
|
-
end
|
|
69
|
-
end
|
|
@@ -1,365 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module RuboCop
|
|
4
|
-
module Cop
|
|
5
|
-
module Style
|
|
6
|
-
# Access modifiers should be declared to apply to a group of methods
|
|
7
|
-
# or inline before each method, depending on configuration.
|
|
8
|
-
# EnforcedStyle config covers only method definitions.
|
|
9
|
-
# Applications of visibility methods to symbols can be controlled
|
|
10
|
-
# using AllowModifiersOnSymbols config.
|
|
11
|
-
# Also, the visibility of `attr*` methods can be controlled using
|
|
12
|
-
# AllowModifiersOnAttrs config.
|
|
13
|
-
#
|
|
14
|
-
# In Ruby 3.0, `attr*` methods now return an array of defined method names
|
|
15
|
-
# as symbols. So we can write the modifier and `attr*` in inline style.
|
|
16
|
-
# AllowModifiersOnAttrs config allows `attr*` methods to be written in
|
|
17
|
-
# inline style without modifying applications that have been maintained
|
|
18
|
-
# for a long time in group style. Furthermore, developers who are not very
|
|
19
|
-
# familiar with Ruby may know that the modifier applies to `def`, but they
|
|
20
|
-
# may not know that it also applies to `attr*` methods. It would be easier
|
|
21
|
-
# to understand if we could write `attr*` methods in inline style.
|
|
22
|
-
#
|
|
23
|
-
# @safety
|
|
24
|
-
# Autocorrection is not safe, because the visibility of dynamically
|
|
25
|
-
# defined methods can vary depending on the state determined by
|
|
26
|
-
# the group access modifier.
|
|
27
|
-
#
|
|
28
|
-
# @example EnforcedStyle: group (default)
|
|
29
|
-
# # bad
|
|
30
|
-
# class Foo
|
|
31
|
-
#
|
|
32
|
-
# private def bar; end
|
|
33
|
-
# private def baz; end
|
|
34
|
-
#
|
|
35
|
-
# end
|
|
36
|
-
#
|
|
37
|
-
# # good
|
|
38
|
-
# class Foo
|
|
39
|
-
#
|
|
40
|
-
# private
|
|
41
|
-
#
|
|
42
|
-
# def bar; end
|
|
43
|
-
# def baz; end
|
|
44
|
-
#
|
|
45
|
-
# end
|
|
46
|
-
#
|
|
47
|
-
# @example EnforcedStyle: inline
|
|
48
|
-
# # bad
|
|
49
|
-
# class Foo
|
|
50
|
-
#
|
|
51
|
-
# private
|
|
52
|
-
#
|
|
53
|
-
# def bar; end
|
|
54
|
-
# def baz; end
|
|
55
|
-
#
|
|
56
|
-
# end
|
|
57
|
-
#
|
|
58
|
-
# # good
|
|
59
|
-
# class Foo
|
|
60
|
-
#
|
|
61
|
-
# private def bar; end
|
|
62
|
-
# private def baz; end
|
|
63
|
-
#
|
|
64
|
-
# end
|
|
65
|
-
#
|
|
66
|
-
# @example AllowModifiersOnSymbols: true (default)
|
|
67
|
-
# # good
|
|
68
|
-
# class Foo
|
|
69
|
-
#
|
|
70
|
-
# private :bar, :baz
|
|
71
|
-
# private *%i[qux quux]
|
|
72
|
-
# private *METHOD_NAMES
|
|
73
|
-
# private *private_methods
|
|
74
|
-
#
|
|
75
|
-
# end
|
|
76
|
-
#
|
|
77
|
-
# @example AllowModifiersOnSymbols: false
|
|
78
|
-
# # bad
|
|
79
|
-
# class Foo
|
|
80
|
-
#
|
|
81
|
-
# private :bar, :baz
|
|
82
|
-
# private *%i[qux quux]
|
|
83
|
-
# private *METHOD_NAMES
|
|
84
|
-
# private *private_methods
|
|
85
|
-
#
|
|
86
|
-
# end
|
|
87
|
-
#
|
|
88
|
-
# @example AllowModifiersOnAttrs: true (default)
|
|
89
|
-
# # good
|
|
90
|
-
# class Foo
|
|
91
|
-
#
|
|
92
|
-
# public attr_reader :bar
|
|
93
|
-
# protected attr_writer :baz
|
|
94
|
-
# private attr_accessor :qux
|
|
95
|
-
# private attr :quux
|
|
96
|
-
#
|
|
97
|
-
# def public_method; end
|
|
98
|
-
#
|
|
99
|
-
# private
|
|
100
|
-
#
|
|
101
|
-
# def private_method; end
|
|
102
|
-
#
|
|
103
|
-
# end
|
|
104
|
-
#
|
|
105
|
-
# @example AllowModifiersOnAttrs: false
|
|
106
|
-
# # bad
|
|
107
|
-
# class Foo
|
|
108
|
-
#
|
|
109
|
-
# public attr_reader :bar
|
|
110
|
-
# protected attr_writer :baz
|
|
111
|
-
# private attr_accessor :qux
|
|
112
|
-
# private attr :quux
|
|
113
|
-
#
|
|
114
|
-
# end
|
|
115
|
-
#
|
|
116
|
-
# @example AllowModifiersOnAliasMethod: true (default)
|
|
117
|
-
# # good
|
|
118
|
-
# class Foo
|
|
119
|
-
#
|
|
120
|
-
# public alias_method :bar, :foo
|
|
121
|
-
# protected alias_method :baz, :foo
|
|
122
|
-
# private alias_method :qux, :foo
|
|
123
|
-
#
|
|
124
|
-
# end
|
|
125
|
-
#
|
|
126
|
-
# @example AllowModifiersOnAliasMethod: false
|
|
127
|
-
# # bad
|
|
128
|
-
# class Foo
|
|
129
|
-
#
|
|
130
|
-
# public alias_method :bar, :foo
|
|
131
|
-
# protected alias_method :baz, :foo
|
|
132
|
-
# private alias_method :qux, :foo
|
|
133
|
-
#
|
|
134
|
-
# end
|
|
135
|
-
class AccessModifierDeclarations < Base
|
|
136
|
-
extend AutoCorrector
|
|
137
|
-
|
|
138
|
-
include ConfigurableEnforcedStyle
|
|
139
|
-
include RangeHelp
|
|
140
|
-
|
|
141
|
-
GROUP_STYLE_MESSAGE = [
|
|
142
|
-
'`%<access_modifier>s` should not be',
|
|
143
|
-
'inlined in method definitions.'
|
|
144
|
-
].join(' ')
|
|
145
|
-
|
|
146
|
-
INLINE_STYLE_MESSAGE = [
|
|
147
|
-
'`%<access_modifier>s` should be',
|
|
148
|
-
'inlined in method definitions.'
|
|
149
|
-
].join(' ')
|
|
150
|
-
|
|
151
|
-
RESTRICT_ON_SEND = %i[private protected public module_function].freeze
|
|
152
|
-
|
|
153
|
-
# @!method access_modifier_with_symbol?(node)
|
|
154
|
-
def_node_matcher :access_modifier_with_symbol?, <<~PATTERN
|
|
155
|
-
(send nil? {:private :protected :public :module_function}
|
|
156
|
-
{(sym _)+ (splat {#percent_symbol_array? const send})}
|
|
157
|
-
)
|
|
158
|
-
PATTERN
|
|
159
|
-
|
|
160
|
-
# @!method access_modifier_with_attr?(node)
|
|
161
|
-
def_node_matcher :access_modifier_with_attr?, <<~PATTERN
|
|
162
|
-
(send nil? {:private :protected :public :module_function}
|
|
163
|
-
(send nil? {:attr :attr_reader :attr_writer :attr_accessor} _+))
|
|
164
|
-
PATTERN
|
|
165
|
-
|
|
166
|
-
# @!method access_modifier_with_alias_method?, <<~PATTERN
|
|
167
|
-
def_node_matcher :access_modifier_with_alias_method?, <<~PATTERN
|
|
168
|
-
(send nil? {:private :protected :public :module_function}
|
|
169
|
-
(send nil? :alias_method _ _))
|
|
170
|
-
PATTERN
|
|
171
|
-
|
|
172
|
-
def on_send(node)
|
|
173
|
-
return if allowed?(node)
|
|
174
|
-
|
|
175
|
-
if offense?(node)
|
|
176
|
-
add_offense(node.loc.selector) do |corrector|
|
|
177
|
-
autocorrect(corrector, node)
|
|
178
|
-
end
|
|
179
|
-
opposite_style_detected
|
|
180
|
-
else
|
|
181
|
-
correct_style_detected
|
|
182
|
-
end
|
|
183
|
-
end
|
|
184
|
-
|
|
185
|
-
private
|
|
186
|
-
|
|
187
|
-
def allowed?(node)
|
|
188
|
-
!node.access_modifier? ||
|
|
189
|
-
node.parent&.type?(:pair, :any_block) ||
|
|
190
|
-
allow_modifiers_on_symbols?(node) ||
|
|
191
|
-
allow_modifiers_on_attrs?(node) ||
|
|
192
|
-
allow_modifiers_on_alias_method?(node)
|
|
193
|
-
end
|
|
194
|
-
|
|
195
|
-
def autocorrect(corrector, node)
|
|
196
|
-
case style
|
|
197
|
-
when :group
|
|
198
|
-
autocorrect_group_style(corrector, node)
|
|
199
|
-
when :inline
|
|
200
|
-
autocorrect_inline_style(corrector, node)
|
|
201
|
-
end
|
|
202
|
-
end
|
|
203
|
-
|
|
204
|
-
def autocorrect_group_style(corrector, node)
|
|
205
|
-
def_nodes = find_corresponding_def_nodes(node)
|
|
206
|
-
return unless def_nodes.any?
|
|
207
|
-
|
|
208
|
-
replace_defs(corrector, node, def_nodes)
|
|
209
|
-
end
|
|
210
|
-
|
|
211
|
-
def autocorrect_inline_style(corrector, node)
|
|
212
|
-
if node.parent&.begin_type?
|
|
213
|
-
remove_modifier_node_within_begin(corrector, node, node.parent)
|
|
214
|
-
else
|
|
215
|
-
remove_nodes(corrector, node)
|
|
216
|
-
end
|
|
217
|
-
select_grouped_def_nodes(node).each do |grouped_def_node|
|
|
218
|
-
insert_inline_modifier(corrector, grouped_def_node, node.method_name)
|
|
219
|
-
end
|
|
220
|
-
end
|
|
221
|
-
|
|
222
|
-
def percent_symbol_array?(node)
|
|
223
|
-
node.array_type? && node.percent_literal?(:symbol)
|
|
224
|
-
end
|
|
225
|
-
|
|
226
|
-
def allow_modifiers_on_symbols?(node)
|
|
227
|
-
cop_config['AllowModifiersOnSymbols'] && access_modifier_with_symbol?(node)
|
|
228
|
-
end
|
|
229
|
-
|
|
230
|
-
def allow_modifiers_on_attrs?(node)
|
|
231
|
-
cop_config['AllowModifiersOnAttrs'] && access_modifier_with_attr?(node)
|
|
232
|
-
end
|
|
233
|
-
|
|
234
|
-
def allow_modifiers_on_alias_method?(node)
|
|
235
|
-
cop_config['AllowModifiersOnAliasMethod'] && access_modifier_with_alias_method?(node)
|
|
236
|
-
end
|
|
237
|
-
|
|
238
|
-
def offense?(node)
|
|
239
|
-
if group_style?
|
|
240
|
-
return false if node.parent ? node.parent.if_type? : access_modifier_with_symbol?(node)
|
|
241
|
-
|
|
242
|
-
access_modifier_is_inlined?(node) && !right_siblings_same_inline_method?(node)
|
|
243
|
-
else
|
|
244
|
-
access_modifier_is_not_inlined?(node) && select_grouped_def_nodes(node).any?
|
|
245
|
-
end
|
|
246
|
-
end
|
|
247
|
-
|
|
248
|
-
def correctable_group_offense?(node)
|
|
249
|
-
return false unless group_style?
|
|
250
|
-
return false if allowed?(node)
|
|
251
|
-
|
|
252
|
-
access_modifier_is_inlined?(node) && find_corresponding_def_nodes(node).any?
|
|
253
|
-
end
|
|
254
|
-
|
|
255
|
-
def group_style?
|
|
256
|
-
style == :group
|
|
257
|
-
end
|
|
258
|
-
|
|
259
|
-
def inline_style?
|
|
260
|
-
style == :inline
|
|
261
|
-
end
|
|
262
|
-
|
|
263
|
-
def access_modifier_is_inlined?(node)
|
|
264
|
-
node.arguments.any?
|
|
265
|
-
end
|
|
266
|
-
|
|
267
|
-
def access_modifier_is_not_inlined?(node)
|
|
268
|
-
!access_modifier_is_inlined?(node)
|
|
269
|
-
end
|
|
270
|
-
|
|
271
|
-
def right_siblings_same_inline_method?(node)
|
|
272
|
-
node.right_siblings.any? do |sibling|
|
|
273
|
-
sibling.send_type? &&
|
|
274
|
-
correctable_group_offense?(sibling) &&
|
|
275
|
-
sibling.method?(node.method_name) &&
|
|
276
|
-
!sibling.arguments.empty? &&
|
|
277
|
-
find_corresponding_def_nodes(sibling).any?
|
|
278
|
-
end
|
|
279
|
-
end
|
|
280
|
-
|
|
281
|
-
def message(range)
|
|
282
|
-
access_modifier = range.source
|
|
283
|
-
|
|
284
|
-
if group_style?
|
|
285
|
-
format(GROUP_STYLE_MESSAGE, access_modifier: access_modifier)
|
|
286
|
-
elsif inline_style?
|
|
287
|
-
format(INLINE_STYLE_MESSAGE, access_modifier: access_modifier)
|
|
288
|
-
end
|
|
289
|
-
end
|
|
290
|
-
|
|
291
|
-
def find_corresponding_def_nodes(node)
|
|
292
|
-
if access_modifier_with_symbol?(node)
|
|
293
|
-
method_names = node.arguments.filter_map do |argument|
|
|
294
|
-
next unless argument.sym_type?
|
|
295
|
-
|
|
296
|
-
argument.respond_to?(:value) && argument.value
|
|
297
|
-
end
|
|
298
|
-
|
|
299
|
-
def_nodes = node.parent.each_child_node(:def).select do |child|
|
|
300
|
-
method_names.include?(child.method_name)
|
|
301
|
-
end
|
|
302
|
-
|
|
303
|
-
# If there isn't a `def` node for each symbol, we will skip autocorrection.
|
|
304
|
-
def_nodes.size == method_names.size ? def_nodes : []
|
|
305
|
-
else
|
|
306
|
-
[node.first_argument]
|
|
307
|
-
end
|
|
308
|
-
end
|
|
309
|
-
|
|
310
|
-
def find_argument_less_modifier_node(node)
|
|
311
|
-
return unless (parent = node.parent)
|
|
312
|
-
|
|
313
|
-
parent.each_child_node(:send).find do |child|
|
|
314
|
-
child.method?(node.method_name) && child.arguments.empty?
|
|
315
|
-
end
|
|
316
|
-
end
|
|
317
|
-
|
|
318
|
-
def select_grouped_def_nodes(node)
|
|
319
|
-
node.right_siblings.take_while do |sibling|
|
|
320
|
-
!(sibling.send_type? && sibling.bare_access_modifier_declaration?)
|
|
321
|
-
end.select(&:def_type?)
|
|
322
|
-
end
|
|
323
|
-
|
|
324
|
-
def replace_defs(corrector, node, def_nodes)
|
|
325
|
-
source = def_source(node, def_nodes)
|
|
326
|
-
argument_less_modifier_node = find_argument_less_modifier_node(node)
|
|
327
|
-
if argument_less_modifier_node
|
|
328
|
-
corrector.insert_after(argument_less_modifier_node, "\n\n#{source}")
|
|
329
|
-
elsif (ancestor = node.each_ancestor(:class, :module).first)
|
|
330
|
-
|
|
331
|
-
corrector.insert_before(ancestor.loc.end, "#{node.method_name}\n\n#{source}\n")
|
|
332
|
-
else
|
|
333
|
-
corrector.replace(node, "#{node.method_name}\n\n#{source}")
|
|
334
|
-
return
|
|
335
|
-
end
|
|
336
|
-
|
|
337
|
-
remove_nodes(corrector, *def_nodes, node)
|
|
338
|
-
end
|
|
339
|
-
|
|
340
|
-
def insert_inline_modifier(corrector, node, modifier_name)
|
|
341
|
-
corrector.insert_before(node, "#{modifier_name} ")
|
|
342
|
-
end
|
|
343
|
-
|
|
344
|
-
def remove_nodes(corrector, *nodes)
|
|
345
|
-
nodes.each do |node|
|
|
346
|
-
corrector.remove(range_with_comments_and_lines(node))
|
|
347
|
-
end
|
|
348
|
-
end
|
|
349
|
-
|
|
350
|
-
def remove_modifier_node_within_begin(corrector, modifier_node, begin_node)
|
|
351
|
-
def_node = begin_node.children[begin_node.children.index(modifier_node) + 1]
|
|
352
|
-
range = modifier_node.source_range.begin.join(def_node.source_range.begin)
|
|
353
|
-
corrector.remove(range)
|
|
354
|
-
end
|
|
355
|
-
|
|
356
|
-
def def_source(node, def_nodes)
|
|
357
|
-
[
|
|
358
|
-
*processed_source.ast_with_comments[node].map(&:text),
|
|
359
|
-
*def_nodes.map(&:source)
|
|
360
|
-
].join("\n")
|
|
361
|
-
end
|
|
362
|
-
end
|
|
363
|
-
end
|
|
364
|
-
end
|
|
365
|
-
end
|