fablicop 1.10.2 → 1.10.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/config/.base_rubocop.yml +4 -4
- data/fablicop.gemspec +1 -1
- data/lib/fablicop/version.rb +1 -1
- data/vendor/bundle/ruby/3.2.0/cache/activesupport-7.0.6.gem +0 -0
- data/vendor/bundle/ruby/3.2.0/cache/language_server-protocol-3.17.0.3.gem +0 -0
- data/vendor/bundle/ruby/3.2.0/cache/minitest-5.18.1.gem +0 -0
- data/vendor/bundle/ruby/3.2.0/cache/racc-1.7.1.gem +0 -0
- data/vendor/bundle/ruby/3.2.0/cache/rack-3.0.8.gem +0 -0
- data/vendor/bundle/ruby/3.2.0/cache/rspec-support-3.12.1.gem +0 -0
- data/vendor/bundle/ruby/3.2.0/cache/rubocop-1.54.1.gem +0 -0
- data/vendor/bundle/ruby/3.2.0/cache/rubocop-rails-2.20.2.gem +0 -0
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/racc-1.7.1/gem.build_complete +0 -0
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/racc-1.7.1/gem_make.out +20 -0
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/racc-1.7.1/mkmf.log +57 -0
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/racc-1.7.1/racc/cparse.so +0 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/CHANGELOG.md +515 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/MIT-LICENSE +20 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/README.rdoc +40 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/actionable_error.rb +48 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/all.rb +5 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/array_inquirer.rb +48 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/backtrace_cleaner.rb +131 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/benchmarkable.rb +51 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/builder.rb +8 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/cache/file_store.rb +202 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/cache/mem_cache_store.rb +324 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/cache/memory_store.rb +203 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/cache/null_store.rb +56 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/cache/redis_cache_store.rb +474 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/cache/strategy/local_cache.rb +186 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/cache/strategy/local_cache_middleware.rb +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/cache.rb +1030 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/callbacks.rb +961 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/code_generator.rb +65 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/concern.rb +215 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/concurrency/load_interlock_aware_monitor.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/concurrency/share_lock.rb +226 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/configurable.rb +149 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/configuration_file.rb +51 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/array/access.rb +100 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/array/conversions.rb +214 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/array/deprecated_conversions.rb +25 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/array/extract.rb +21 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/array/extract_options.rb +31 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/array/grouping.rb +109 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/array/inquiry.rb +19 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/array/wrap.rb +48 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/array.rb +10 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/benchmark.rb +16 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/big_decimal/conversions.rb +14 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/big_decimal.rb +3 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/class/attribute.rb +131 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/class/attribute_accessors.rb +6 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/class/subclasses.rb +41 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/class.rb +4 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/date/acts_like.rb +10 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/date/blank.rb +14 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/date/calculations.rb +161 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/date/conversions.rb +97 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/date/deprecated_conversions.rb +26 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/date/zones.rb +8 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/date.rb +8 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/date_and_time/calculations.rb +364 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/date_and_time/compatibility.rb +31 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/date_and_time/zones.rb +40 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/date_time/acts_like.rb +16 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/date_time/blank.rb +14 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/date_time/calculations.rb +215 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/date_time/compatibility.rb +18 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/date_time/conversions.rb +106 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/date_time/deprecated_conversions.rb +22 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/date_time.rb +8 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/digest/uuid.rb +79 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/digest.rb +3 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/enumerable.rb +329 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/file/atomic.rb +72 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/file.rb +3 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/hash/conversions.rb +262 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/hash/deep_merge.rb +34 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/hash/deep_transform_values.rb +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/hash/except.rb +24 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/hash/indifferent_access.rb +24 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/hash/keys.rb +143 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/hash/reverse_merge.rb +25 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/hash/slice.rb +27 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/hash.rb +10 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/integer/inflections.rb +31 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/integer/multiple.rb +12 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/integer/time.rb +22 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/integer.rb +5 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/kernel/concern.rb +14 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/kernel/reporting.rb +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/kernel/singleton_class.rb +8 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/kernel.rb +5 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/load_error.rb +9 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/module/aliasing.rb +31 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/module/anonymous.rb +30 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/module/attr_internal.rb +38 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/module/attribute_accessors.rb +208 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/module/attribute_accessors_per_thread.rb +157 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/module/concerning.rb +140 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/module/delegation.rb +324 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/module/deprecation.rb +25 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/module/introspection.rb +63 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/module/redefine_method.rb +40 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/module/remove_method.rb +17 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/module.rb +13 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/name_error.rb +59 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/numeric/bytes.rb +66 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/numeric/conversions.rb +143 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/numeric/deprecated_conversions.rb +60 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/numeric/time.rb +66 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/numeric.rb +6 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/object/acts_like.rb +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/object/blank.rb +155 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/object/conversions.rb +6 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/object/deep_dup.rb +55 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/object/duplicable.rb +60 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/object/inclusion.rb +29 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/object/instance_variables.rb +30 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/object/json.rb +244 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/object/to_param.rb +3 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/object/to_query.rb +87 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/object/try.rb +158 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/object/with_options.rb +101 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/object.rb +16 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/pathname/existence.rb +21 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/pathname.rb +3 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/range/compare_range.rb +57 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/range/conversions.rb +41 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/range/deprecated_conversions.rb +26 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/range/each.rb +24 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/range/include_time_with_zone.rb +5 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/range/overlaps.rb +10 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/range.rb +7 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/regexp.rb +14 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/securerandom.rb +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/string/access.rb +95 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/string/behavior.rb +8 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/string/conversions.rb +60 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/string/exclude.rb +13 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/string/filters.rb +145 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/string/indent.rb +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/string/inflections.rb +289 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/string/inquiry.rb +16 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/string/multibyte.rb +58 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/string/output_safety.rb +371 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/string/starts_ends_with.rb +6 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/string/strip.rb +27 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/string/zones.rb +16 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/string.rb +15 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/symbol/starts_ends_with.rb +6 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/symbol.rb +3 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/time/acts_like.rb +10 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/time/calculations.rb +368 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/time/compatibility.rb +16 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/time/conversions.rb +75 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/time/deprecated_conversions.rb +22 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/time/zones.rb +97 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/time.rb +8 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext/uri.rb +5 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/core_ext.rb +6 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/current_attributes/test_helper.rb +13 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/current_attributes.rb +226 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/dependencies/autoload.rb +79 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/dependencies/interlock.rb +49 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/dependencies/require_dependency.rb +28 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/dependencies.rb +98 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/deprecation/behaviors.rb +125 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/deprecation/constant_accessor.rb +52 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/deprecation/disallowed.rb +56 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/deprecation/instance_delegator.rb +38 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/deprecation/method_wrappers.rb +85 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/deprecation/proxy_wrappers.rb +177 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/deprecation/reporting.rb +157 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/deprecation.rb +51 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/descendants_tracker.rb +218 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/digest.rb +22 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/duration/iso8601_parser.rb +123 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/duration/iso8601_serializer.rb +67 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/duration.rb +514 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/encrypted_configuration.rb +87 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/encrypted_file.rb +129 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/environment_inquirer.rb +20 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/error_reporter.rb +117 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/evented_file_update_checker.rb +181 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/execution_context/test_helper.rb +13 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/execution_context.rb +53 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/execution_wrapper.rb +151 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/executor/test_helper.rb +7 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/executor.rb +8 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/file_update_checker.rb +162 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/fork_tracker.rb +71 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/gem_version.rb +17 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/gzip.rb +38 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/hash_with_indifferent_access.rb +425 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/html_safe_translation.rb +43 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/i18n.rb +17 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/i18n_railtie.rb +125 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/inflections.rb +72 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/inflector/inflections.rb +271 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/inflector/methods.rb +375 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/inflector/transliterate.rb +147 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/inflector.rb +9 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/isolated_execution_state.rb +72 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/json/decoding.rb +75 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/json/encoding.rb +138 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/json.rb +4 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/key_generator.rb +58 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/lazy_load_hooks.rb +105 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/locale/en.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/locale/en.yml +139 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/log_subscriber/test_helper.rb +106 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/log_subscriber.rb +152 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/logger.rb +93 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/logger_silence.rb +21 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/logger_thread_safe_level.rb +69 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/message_encryptor.rb +230 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/message_verifier.rb +237 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/messages/metadata.rb +80 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/messages/rotation_configuration.rb +23 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/messages/rotator.rb +57 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/multibyte/chars.rb +176 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/multibyte/unicode.rb +70 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/multibyte.rb +23 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/notifications/fanout.rb +285 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/notifications/instrumenter.rb +172 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/notifications.rb +280 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/number_helper/number_converter.rb +181 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/number_helper/number_to_currency_converter.rb +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/number_helper/number_to_delimited_converter.rb +30 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/number_helper/number_to_human_converter.rb +69 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/number_helper/number_to_human_size_converter.rb +60 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/number_helper/number_to_percentage_converter.rb +16 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/number_helper/number_to_phone_converter.rb +59 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/number_helper/number_to_rounded_converter.rb +59 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/number_helper/rounding_helper.rb +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/number_helper.rb +396 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/option_merger.rb +38 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/ordered_hash.rb +50 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/ordered_options.rb +95 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/parameter_filter.rb +142 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/per_thread_registry.rb +65 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/proxy_object.rb +15 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/rails.rb +26 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/railtie.rb +152 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/reloader.rb +130 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/rescuable.rb +174 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/ruby_features.rb +7 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/secure_compare_rotator.rb +51 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/security_utils.rb +38 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/string_inquirer.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/subscriber.rb +163 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/tagged_logging.rb +113 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/test_case.rb +155 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/testing/assertions.rb +265 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/testing/autorun.rb +7 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/testing/constant_lookup.rb +51 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/testing/declarative.rb +28 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/testing/deprecation.rb +89 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/testing/file_fixtures.rb +38 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/testing/isolation.rb +111 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/testing/method_call_assertions.rb +70 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/testing/parallelization/server.rb +82 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/testing/parallelization/worker.rb +103 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/testing/parallelization.rb +55 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/testing/parallelize_executor.rb +76 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/testing/setup_and_teardown.rb +55 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/testing/stream.rb +41 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/testing/tagged_logging.rb +27 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/testing/time_helpers.rb +246 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/time.rb +20 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/time_with_zone.rb +625 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/values/time_zone.rb +601 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/version.rb +10 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/xml_mini/jdom.rb +182 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/xml_mini/libxml.rb +80 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/xml_mini/libxmlsax.rb +83 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/xml_mini/nokogiri.rb +83 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/xml_mini/nokogirisax.rb +86 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/xml_mini/rexml.rb +137 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support/xml_mini.rb +202 -0
- data/vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.6/lib/active_support.rb +124 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/LICENSE.txt +21 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/README.md +88 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant/code_action_kind.rb +85 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant/code_action_trigger_kind.rb +22 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant/completion_item_kind.rb +36 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant/completion_item_tag.rb +16 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant/completion_trigger_kind.rb +26 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant/diagnostic_severity.rb +24 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant/diagnostic_tag.rb +24 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant/document_diagnostic_report_kind.rb +21 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant/document_highlight_kind.rb +23 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant/error_codes.rb +73 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant/failure_handling_kind.rb +30 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant/file_change_type.rb +23 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant/file_operation_pattern_kind.rb +20 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant/folding_range_kind.rb +24 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant/initialize_error_codes.rb +16 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant/inlay_hint_kind.rb +19 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant/insert_text_format.rb +25 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant/insert_text_mode.rb +30 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant/markup_kind.rb +23 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant/message_type.rb +24 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant/moniker_kind.rb +24 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant/notebook_cell_kind.rb +19 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant/position_encoding_kind.rb +32 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant/prepare_support_default_behavior.rb +13 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant/resource_operation_kind.rb +23 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant/semantic_token_modifiers.rb +18 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant/semantic_token_types.rb +35 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant/signature_help_trigger_kind.rb +24 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant/symbol_kind.rb +37 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant/symbol_tag.rb +15 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant/text_document_save_reason.rb +24 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant/text_document_sync_kind.rb +27 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant/token_format.rb +9 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant/uniqueness_level.rb +31 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant/watch_kind.rb +20 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/constant.rb +77 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/annotated_text_edit.rb +56 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/apply_workspace_edit_params.rb +44 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/apply_workspace_edit_result.rb +56 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/call_hierarchy_client_capabilities.rb +36 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/call_hierarchy_incoming_call.rb +43 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/call_hierarchy_incoming_calls_params.rb +49 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/call_hierarchy_item.rb +100 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/call_hierarchy_options.rb +30 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/call_hierarchy_outgoing_call.rb +43 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/call_hierarchy_outgoing_calls_params.rb +49 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/call_hierarchy_prepare_params.rb +51 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/call_hierarchy_registration_options.rb +50 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/cancel_params.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/change_annotation.rb +57 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/client_capabilities.rb +78 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/code_action.rb +127 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/code_action_client_capabilities.rb +95 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/code_action_context.rb +63 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/code_action_options.rb +52 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/code_action_params.rb +73 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/code_action_registration_options.rb +62 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/code_description.rb +36 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/code_lens.rb +61 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/code_lens_client_capabilities.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/code_lens_options.rb +39 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/code_lens_params.rb +52 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/code_lens_registration_options.rb +49 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/code_lens_workspace_client_capabilities.rb +39 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/color.rb +63 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/color_information.rb +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/color_presentation.rb +57 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/color_presentation_params.rb +70 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/command.rb +52 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/completion_client_capabilities.rb +79 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/completion_context.rb +48 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/completion_item.rb +267 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/completion_item_label_details.rb +49 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/completion_list.rb +69 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/completion_options.rb +87 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/completion_params.rb +72 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/completion_registration_options.rb +94 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/configuration_item.rb +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/configuration_params.rb +30 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/create_file.rb +63 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/create_file_options.rb +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/create_files_params.rb +37 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/declaration_client_capabilities.rb +44 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/declaration_options.rb +30 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/declaration_params.rb +61 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/declaration_registration_options.rb +50 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/definition_client_capabilities.rb +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/definition_options.rb +30 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/definition_params.rb +61 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/definition_registration_options.rb +40 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/delete_file.rb +63 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/delete_file_options.rb +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/delete_files_params.rb +37 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/diagnostic.rb +110 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/diagnostic_client_capabilities.rb +49 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/diagnostic_options.rb +64 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/diagnostic_registration_options.rb +84 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/diagnostic_related_information.rb +47 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/diagnostic_server_cancellation_data.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/diagnostic_workspace_client_capabilities.rb +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/did_change_configuration_client_capabilities.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/did_change_configuration_params.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/did_change_notebook_document_params.rb +56 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/did_change_text_document_params.rb +56 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/did_change_watched_files_client_capabilities.rb +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/did_change_watched_files_params.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/did_change_watched_files_registration_options.rb +36 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/did_change_workspace_folders_params.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/did_close_notebook_document_params.rb +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/did_close_text_document_params.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/did_open_notebook_document_params.rb +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/did_open_text_document_params.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/did_save_notebook_document_params.rb +36 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/did_save_text_document_params.rb +43 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/document_color_client_capabilities.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/document_color_options.rb +30 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/document_color_params.rb +52 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/document_color_registration_options.rb +50 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/document_diagnostic_params.rb +73 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/document_diagnostic_report_partial_result.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/document_filter.rb +63 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/document_formatting_client_capabilities.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/document_formatting_options.rb +30 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/document_formatting_params.rb +51 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/document_formatting_registration_options.rb +40 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/document_highlight.rb +47 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/document_highlight_client_capabilities.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/document_highlight_options.rb +30 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/document_highlight_params.rb +61 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/document_highlight_registration_options.rb +40 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/document_link.rb +70 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/document_link_client_capabilities.rb +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/document_link_options.rb +39 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/document_link_params.rb +52 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/document_link_registration_options.rb +49 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/document_on_type_formatting_client_capabilities.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/document_on_type_formatting_options.rb +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/document_on_type_formatting_params.rb +65 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/document_on_type_formatting_registration_options.rb +52 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/document_range_formatting_client_capabilities.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/document_range_formatting_options.rb +30 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/document_range_formatting_params.rb +60 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/document_range_formatting_registration_options.rb +40 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/document_symbol.rb +108 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/document_symbol_client_capabilities.rb +73 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/document_symbol_options.rb +40 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/document_symbol_params.rb +52 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/document_symbol_registration_options.rb +50 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/execute_command_client_capabilities.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/execute_command_options.rb +39 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/execute_command_params.rb +51 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/execute_command_registration_options.rb +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/execution_summary.rb +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/file_create.rb +36 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/file_delete.rb +36 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/file_event.rb +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/file_operation_filter.rb +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/file_operation_pattern.rb +67 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/file_operation_pattern_options.rb +36 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/file_operation_registration_options.rb +36 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/file_rename.rb +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/file_system_watcher.rb +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/folding_range.rb +94 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/folding_range_client_capabilities.rb +76 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/folding_range_options.rb +30 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/folding_range_params.rb +52 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/folding_range_registration_options.rb +50 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/formatting_options.rb +72 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/full_document_diagnostic_report.rb +56 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/hover.rb +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/hover_client_capabilities.rb +44 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/hover_options.rb +30 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/hover_params.rb +51 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/hover_registration_options.rb +40 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/hover_result.rb +30 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/implementation_client_capabilities.rb +44 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/implementation_options.rb +30 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/implementation_params.rb +61 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/implementation_registration_options.rb +50 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/initialize_error.rb +36 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/initialize_params.rb +128 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/initialize_result.rb +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/initialized_params.rb +24 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/inlay_hint.rb +122 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/inlay_hint_client_capabilities.rb +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/inlay_hint_label_part.rb +79 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/inlay_hint_options.rb +43 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/inlay_hint_params.rb +54 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/inlay_hint_registration_options.rb +63 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/inlay_hint_workspace_client_capabilities.rb +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/inline_value_client_capabilities.rb +37 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/inline_value_context.rb +44 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/inline_value_evaluatable_expression.rb +52 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/inline_value_options.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/inline_value_params.rb +64 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/inline_value_registration_options.rb +53 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/inline_value_text.rb +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/inline_value_variable_lookup.rb +61 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/inline_value_workspace_client_capabilities.rb +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/insert_replace_edit.rb +54 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/linked_editing_range_client_capabilities.rb +36 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/linked_editing_range_options.rb +30 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/linked_editing_range_params.rb +51 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/linked_editing_range_registration_options.rb +50 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/linked_editing_ranges.rb +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/location.rb +36 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/location_link.rb +68 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/log_message_params.rb +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/log_trace_params.rb +43 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/markup_content.rb +68 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/message.rb +30 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/message_action_item.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/moniker.rb +64 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/moniker_client_capabilities.rb +36 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/moniker_options.rb +30 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/moniker_params.rb +61 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/moniker_registration_options.rb +40 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/notebook_cell.rb +69 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/notebook_cell_array_change.rb +55 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/notebook_cell_text_document_filter.rb +52 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/notebook_document.rb +74 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/notebook_document_change_event.rb +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/notebook_document_client_capabilities.rb +36 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/notebook_document_filter.rb +79 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/notebook_document_identifier.rb +36 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/notebook_document_sync_client_capabilities.rb +48 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/notebook_document_sync_options.rb +56 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/notebook_document_sync_registration_options.rb +56 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/notification_message.rb +48 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/optional_versioned_text_document_identifier.rb +50 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/parameter_information.rb +56 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/partial_result_params.rb +34 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/position.rb +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/prepare_rename_params.rb +51 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/previous_result_id.rb +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/progress_params.rb +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/publish_diagnostics_client_capabilities.rb +73 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/publish_diagnostics_params.rb +52 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/range.rb +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/reference_client_capabilities.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/reference_context.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/reference_options.rb +30 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/reference_params.rb +67 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/reference_registration_options.rb +40 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/registration.rb +55 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/registration_params.rb +30 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/regular_expressions_client_capabilities.rb +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/related_full_document_diagnostic_report.rb +69 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/related_unchanged_document_diagnostic_report.rb +62 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/relative_pattern.rb +48 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/rename_client_capabilities.rb +69 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/rename_file.rb +72 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/rename_file_options.rb +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/rename_files_params.rb +38 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/rename_options.rb +39 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/rename_params.rb +62 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/rename_registration_options.rb +49 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/request_message.rb +57 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/response_error.rb +52 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/response_message.rb +58 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/save_options.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/selection_range.rb +43 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/selection_range_client_capabilities.rb +36 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/selection_range_options.rb +30 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/selection_range_params.rb +61 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/selection_range_registration_options.rb +50 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/semantic_tokens.rb +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/semantic_tokens_client_capabilities.rb +125 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/semantic_tokens_delta.rb +40 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/semantic_tokens_delta_params.rb +62 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/semantic_tokens_delta_partial_result.rb +30 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/semantic_tokens_edit.rb +51 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/semantic_tokens_legend.rb +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/semantic_tokens_options.rb +58 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/semantic_tokens_params.rb +52 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/semantic_tokens_partial_result.rb +30 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/semantic_tokens_range_params.rb +61 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/semantic_tokens_registration_options.rb +78 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/semantic_tokens_workspace_client_capabilities.rb +39 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/server_capabilities.rb +352 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/set_trace_params.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/show_document_client_capabilities.rb +37 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/show_document_params.rb +71 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/show_document_result.rb +36 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/show_message_params.rb +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/show_message_request_client_capabilities.rb +36 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/show_message_request_params.rb +51 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/signature_help.rb +71 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/signature_help_client_capabilities.rb +55 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/signature_help_context.rb +74 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/signature_help_options.rb +53 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/signature_help_params.rb +62 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/signature_help_registration_options.rb +63 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/signature_information.rb +69 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/static_registration_options.rb +37 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/symbol_information.rb +93 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/text_document_change_registration_options.rb +47 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/text_document_client_capabilities.rb +297 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/text_document_content_change_event.rb +59 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/text_document_edit.rb +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/text_document_identifier.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/text_document_item.rb +61 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/text_document_position_params.rb +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/text_document_registration_options.rb +37 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/text_document_save_registration_options.rb +43 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/text_document_sync_client_capabilities.rb +62 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/text_document_sync_options.rb +78 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/text_edit.rb +44 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/type_definition_client_capabilities.rb +44 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/type_definition_options.rb +30 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/type_definition_params.rb +61 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/type_definition_registration_options.rb +50 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/type_hierarchy_item.rb +102 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/type_hierarchy_options.rb +30 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/type_hierarchy_prepare_params.rb +51 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/type_hierarchy_registration_options.rb +50 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/type_hierarchy_subtypes_params.rb +49 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/type_hierarchy_supertypes_params.rb +49 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/unchanged_document_diagnostic_report.rb +50 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/unregistration.rb +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/unregistration_params.rb +30 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/versioned_notebook_document_identifier.rb +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/versioned_text_document_identifier.rb +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/will_save_text_document_params.rb +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/work_done_progress_begin.rb +80 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/work_done_progress_cancel_params.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/work_done_progress_create_params.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/work_done_progress_end.rb +40 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/work_done_progress_options.rb +30 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/work_done_progress_params.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/work_done_progress_report.rb +70 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/workspace_diagnostic_params.rb +65 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/workspace_diagnostic_report.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/workspace_diagnostic_report_partial_result.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/workspace_edit.rb +68 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/workspace_edit_client_capabilities.rb +75 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/workspace_folder.rb +43 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/workspace_folders_change_event.rb +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/workspace_folders_server_capabilities.rb +48 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/workspace_full_document_diagnostic_report.rb +75 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/workspace_symbol.rb +89 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/workspace_symbol_client_capabilities.rb +64 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/workspace_symbol_options.rb +40 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/workspace_symbol_params.rb +56 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/workspace_symbol_registration_options.rb +40 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface/workspace_unchanged_document_diagnostic_report.rb +68 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/interface.rb +631 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/transport/io/reader.rb +31 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/transport/io/writer.rb +35 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/transport/io.rb +2 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/transport/stdio/reader.rb +13 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/transport/stdio/writer.rb +13 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/transport/stdio.rb +2 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/transport.rb +2 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol/version.rb +5 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server/protocol.rb +4 -0
- data/vendor/bundle/ruby/3.2.0/gems/language_server-protocol-3.17.0.3/lib/language_server-protocol.rb +1 -0
- data/vendor/bundle/ruby/3.2.0/gems/minitest-5.18.1/.autotest +34 -0
- data/vendor/bundle/ruby/3.2.0/gems/minitest-5.18.1/History.rdoc +1512 -0
- data/vendor/bundle/ruby/3.2.0/gems/minitest-5.18.1/Manifest.txt +29 -0
- data/vendor/bundle/ruby/3.2.0/gems/minitest-5.18.1/README.rdoc +832 -0
- data/vendor/bundle/ruby/3.2.0/gems/minitest-5.18.1/Rakefile +75 -0
- data/vendor/bundle/ruby/3.2.0/gems/minitest-5.18.1/design_rationale.rb +52 -0
- data/vendor/bundle/ruby/3.2.0/gems/minitest-5.18.1/lib/hoe/minitest.rb +28 -0
- data/vendor/bundle/ruby/3.2.0/gems/minitest-5.18.1/lib/minitest/assertions.rb +858 -0
- data/vendor/bundle/ruby/3.2.0/gems/minitest-5.18.1/lib/minitest/autorun.rb +13 -0
- data/vendor/bundle/ruby/3.2.0/gems/minitest-5.18.1/lib/minitest/benchmark.rb +455 -0
- data/vendor/bundle/ruby/3.2.0/gems/minitest-5.18.1/lib/minitest/expectations.rb +321 -0
- data/vendor/bundle/ruby/3.2.0/gems/minitest-5.18.1/lib/minitest/hell.rb +11 -0
- data/vendor/bundle/ruby/3.2.0/gems/minitest-5.18.1/lib/minitest/mock.rb +327 -0
- data/vendor/bundle/ruby/3.2.0/gems/minitest-5.18.1/lib/minitest/parallel.rb +70 -0
- data/vendor/bundle/ruby/3.2.0/gems/minitest-5.18.1/lib/minitest/pride.rb +4 -0
- data/vendor/bundle/ruby/3.2.0/gems/minitest-5.18.1/lib/minitest/pride_plugin.rb +142 -0
- data/vendor/bundle/ruby/3.2.0/gems/minitest-5.18.1/lib/minitest/spec.rb +349 -0
- data/vendor/bundle/ruby/3.2.0/gems/minitest-5.18.1/lib/minitest/test.rb +248 -0
- data/vendor/bundle/ruby/3.2.0/gems/minitest-5.18.1/lib/minitest/test_task.rb +305 -0
- data/vendor/bundle/ruby/3.2.0/gems/minitest-5.18.1/lib/minitest/unit.rb +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/minitest-5.18.1/lib/minitest.rb +1092 -0
- data/vendor/bundle/ruby/3.2.0/gems/minitest-5.18.1/test/minitest/metametameta.rb +136 -0
- data/vendor/bundle/ruby/3.2.0/gems/minitest-5.18.1/test/minitest/test_minitest_assertions.rb +1701 -0
- data/vendor/bundle/ruby/3.2.0/gems/minitest-5.18.1/test/minitest/test_minitest_benchmark.rb +137 -0
- data/vendor/bundle/ruby/3.2.0/gems/minitest-5.18.1/test/minitest/test_minitest_mock.rb +1146 -0
- data/vendor/bundle/ruby/3.2.0/gems/minitest-5.18.1/test/minitest/test_minitest_reporter.rb +312 -0
- data/vendor/bundle/ruby/3.2.0/gems/minitest-5.18.1/test/minitest/test_minitest_spec.rb +1146 -0
- data/vendor/bundle/ruby/3.2.0/gems/minitest-5.18.1/test/minitest/test_minitest_test.rb +1272 -0
- data/vendor/bundle/ruby/3.2.0/gems/minitest-5.18.1/test/minitest/test_minitest_test_task.rb +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/COPYING +22 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/ChangeLog +846 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/README.ja.rdoc +94 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/README.rdoc +79 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/TODO +5 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/bin/racc +320 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/doc/en/NEWS.en.rdoc +282 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/doc/en/grammar.en.rdoc +226 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/doc/en/grammar2.en.rdoc +219 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/doc/ja/NEWS.ja.rdoc +307 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/doc/ja/command.ja.html +94 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/doc/ja/debug.ja.rdoc +36 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/doc/ja/grammar.ja.rdoc +348 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/doc/ja/index.ja.html +10 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/doc/ja/parser.ja.rdoc +125 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/doc/ja/usage.ja.html +414 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/ext/racc/MANIFEST +4 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/ext/racc/cparse/Makefile +269 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/ext/racc/cparse/cparse.c +861 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/ext/racc/cparse/extconf.rb +9 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/lib/racc/compat.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/lib/racc/cparse.so +0 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/lib/racc/debugflags.rb +60 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/lib/racc/exception.rb +16 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/lib/racc/grammar.rb +1114 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/lib/racc/grammarfileparser.rb +561 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/lib/racc/info.rb +17 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/lib/racc/iset.rb +92 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/lib/racc/logfilegenerator.rb +212 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/lib/racc/parser-text.rb +658 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/lib/racc/parser.rb +632 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/lib/racc/parserfilegenerator.rb +470 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/lib/racc/sourcetext.rb +35 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/lib/racc/state.rb +972 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/lib/racc/statetransitiontable.rb +311 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/lib/racc/static.rb +5 -0
- data/vendor/bundle/ruby/3.2.0/gems/racc-1.7.1/lib/racc.rb +6 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/CHANGELOG.md +860 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/CONTRIBUTING.md +142 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/MIT-LICENSE +20 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/README.md +309 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/SPEC.rdoc +340 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/auth/abstract/handler.rb +41 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/auth/abstract/request.rb +49 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/auth/basic.rb +59 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/auth/digest/md5.rb +1 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/auth/digest/nonce.rb +1 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/auth/digest/params.rb +1 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/auth/digest/request.rb +1 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/auth/digest.rb +256 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/body_proxy.rb +47 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/builder.rb +277 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/cascade.rb +70 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/chunked.rb +120 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/common_logger.rb +88 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/conditional_get.rb +86 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/config.rb +22 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/constants.rb +64 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/content_length.rb +34 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/content_type.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/deflater.rb +158 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/directory.rb +205 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/etag.rb +68 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/events.rb +157 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/file.rb +9 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/files.rb +216 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/head.rb +26 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/headers.rb +154 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/lint.rb +907 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/lock.rb +29 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/logger.rb +22 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/media_type.rb +43 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/method_override.rb +56 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/mime.rb +693 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/mock.rb +3 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/mock_request.rb +166 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/mock_response.rb +126 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/multipart/generator.rb +99 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/multipart/parser.rb +434 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/multipart/uploaded_file.rb +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/multipart.rb +44 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/null_logger.rb +48 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/query_parser.rb +253 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/recursive.rb +66 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/reloader.rb +112 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/request.rb +777 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/response.rb +393 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/rewindable_input.rb +113 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/runtime.rb +35 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/sendfile.rb +167 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/show_exceptions.rb +403 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/show_status.rb +123 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/static.rb +187 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/tempfile_reaper.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/urlmap.rb +99 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/utils.rb +654 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack/version.rb +34 -0
- data/vendor/bundle/ruby/3.2.0/gems/rack-3.0.8/lib/rack.rb +71 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/Changelog.md +372 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/LICENSE.md +23 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/README.md +40 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/lib/rspec/support/caller_filter.rb +83 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/lib/rspec/support/comparable_version.rb +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/lib/rspec/support/differ.rb +215 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/lib/rspec/support/directory_maker.rb +63 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/lib/rspec/support/encoded_string.rb +161 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/lib/rspec/support/fuzzy_matcher.rb +48 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/lib/rspec/support/hunk_generator.rb +47 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/lib/rspec/support/matcher_definition.rb +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/lib/rspec/support/method_signature_verifier.rb +438 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/lib/rspec/support/mutex.rb +73 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/lib/rspec/support/object_formatter.rb +275 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/lib/rspec/support/recursive_const_methods.rb +76 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/lib/rspec/support/reentrant_mutex.rb +78 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/lib/rspec/support/ruby_features.rb +198 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/lib/rspec/support/source/location.rb +21 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/lib/rspec/support/source/node.rb +110 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/lib/rspec/support/source/token.rb +94 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/lib/rspec/support/source.rb +85 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/lib/rspec/support/spec/deprecation_helpers.rb +48 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/lib/rspec/support/spec/diff_helpers.rb +31 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/lib/rspec/support/spec/formatting_support.rb +9 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/lib/rspec/support/spec/in_sub_process.rb +67 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/lib/rspec/support/spec/library_wide_checks.rb +150 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/lib/rspec/support/spec/shell_out.rb +108 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/lib/rspec/support/spec/stderr_splitter.rb +75 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/lib/rspec/support/spec/string_matcher.rb +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/lib/rspec/support/spec/with_isolated_directory.rb +13 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/lib/rspec/support/spec/with_isolated_stderr.rb +13 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/lib/rspec/support/spec.rb +82 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/lib/rspec/support/version.rb +7 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/lib/rspec/support/warnings.rb +39 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/lib/rspec/support/with_keywords_when_needed.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/rspec-support-3.12.1/lib/rspec/support.rb +160 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/LICENSE.txt +20 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/README.md +250 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/assets/logo.png +0 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/assets/output.html.erb +261 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/config/default.yml +5607 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/config/obsoletion.yml +233 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/exe/rubocop +23 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/arguments_env.rb +17 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/arguments_file.rb +17 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/ast_aliases.rb +8 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cache_config.rb +29 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cached_data.rb +58 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cli/command/auto_generate_config.rb +154 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cli/command/base.rb +35 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cli/command/execute_runner.rb +105 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cli/command/init_dotfile.rb +44 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cli/command/lsp.rb +19 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cli/command/show_cops.rb +74 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cli/command/show_docs_url.rb +48 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cli/command/suggest_extensions.rb +126 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cli/command/version.rb +18 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cli/command.rb +22 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cli/environment.rb +22 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cli.rb +203 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/comment_config.rb +216 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/config.rb +330 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/config_finder.rb +68 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/config_loader.rb +259 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/config_loader_resolver.rb +281 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/config_obsoletion/changed_enforced_styles.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/config_obsoletion/changed_parameter.rb +26 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/config_obsoletion/cop_rule.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/config_obsoletion/extracted_cop.rb +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/config_obsoletion/parameter_rule.rb +48 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/config_obsoletion/removed_cop.rb +41 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/config_obsoletion/renamed_cop.rb +34 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/config_obsoletion/rule.rb +41 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/config_obsoletion/split_cop.rb +27 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/config_obsoletion.rb +108 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/config_regeneration.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/config_store.rb +72 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/config_validator.rb +272 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/autocorrect_logic.rb +127 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/badge.rb +68 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/base.rb +486 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/bundler/duplicated_gem.rb +93 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/bundler/gem_comment.rb +171 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/bundler/gem_filename.rb +103 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/bundler/gem_version.rb +133 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/bundler/insecure_protocol_source.rb +86 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/bundler/ordered_gems.rb +62 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/commissioner.rb +182 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/cop.rb +166 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/corrector.rb +138 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/correctors/alignment_corrector.rb +136 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/correctors/condition_corrector.rb +25 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/correctors/each_to_for_corrector.rb +51 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/correctors/empty_line_corrector.rb +25 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/correctors/for_to_each_corrector.rb +74 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/correctors/if_then_corrector.rb +55 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/correctors/lambda_literal_to_method_corrector.rb +136 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/correctors/line_break_corrector.rb +64 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/correctors/multiline_literal_brace_corrector.rb +113 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/correctors/ordered_gem_corrector.rb +38 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/correctors/parentheses_corrector.rb +86 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/correctors/percent_literal_corrector.rb +106 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/correctors/punctuation_corrector.rb +27 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/correctors/require_library_corrector.rb +23 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/correctors/space_corrector.rb +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/correctors/string_literal_corrector.rb +23 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/correctors/unused_arg_corrector.rb +40 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/documentation.rb +39 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/exclude_limit.rb +26 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/force.rb +43 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/gemspec/dependency_version.rb +154 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/gemspec/deprecated_attribute_assignment.rb +92 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/gemspec/development_dependencies.rb +107 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/gemspec/duplicated_assignment.rb +89 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/gemspec/ordered_dependencies.rb +93 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/gemspec/require_mfa.rb +145 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/gemspec/required_ruby_version.rb +127 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/gemspec/ruby_version_globals_usage.rb +50 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/generator/configuration_injector.rb +65 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/generator/require_file_injector.rb +75 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/generator.rb +217 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/ignored_node.rb +36 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/internal_affairs/cop_description.rb +122 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/internal_affairs/create_empty_file.rb +37 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/internal_affairs/empty_line_between_expect_offense_and_correction.rb +68 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/internal_affairs/example_description.rb +92 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/internal_affairs/example_heredoc_delimiter.rb +111 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/internal_affairs/inherit_deprecated_cop_class.rb +34 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/internal_affairs/lambda_or_proc.rb +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/internal_affairs/location_expression.rb +37 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/internal_affairs/location_line_equality_comparison.rb +62 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/internal_affairs/method_name_end_with.rb +80 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/internal_affairs/method_name_equal.rb +50 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/internal_affairs/node_destructuring.rb +44 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/internal_affairs/node_matcher_directive.rb +147 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/internal_affairs/node_type_predicate.rb +41 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/internal_affairs/numblock_handler.rb +69 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/internal_affairs/offense_location_keyword.rb +56 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/internal_affairs/processed_source_buffer_name.rb +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/internal_affairs/redundant_context_config_parameter.rb +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/internal_affairs/redundant_described_class_as_subject.rb +62 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/internal_affairs/redundant_let_rubocop_config_new.rb +73 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/internal_affairs/redundant_location_argument.rb +53 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/internal_affairs/redundant_message_argument.rb +76 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/internal_affairs/redundant_method_dispatch_node.rb +47 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/internal_affairs/redundant_source_range.rb +66 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/internal_affairs/single_line_comparison.rb +62 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/internal_affairs/style_detected_api_use.rb +148 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/internal_affairs/undefined_config.rb +73 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/internal_affairs/useless_message_assertion.rb +52 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/internal_affairs/useless_restrict_on_send.rb +60 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/internal_affairs.rb +31 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/access_modifier_indentation.rb +100 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/argument_alignment.rb +158 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/array_alignment.rb +84 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/assignment_indentation.rb +56 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/begin_end_alignment.rb +74 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/block_alignment.rb +240 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/block_end_newline.rb +82 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/case_indentation.rb +219 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/class_structure.rb +346 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/closing_heredoc_indentation.rb +123 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/closing_parenthesis_indentation.rb +193 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/comment_indentation.rb +168 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/condition_position.rb +64 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/def_end_alignment.rb +73 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/dot_position.rb +143 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/else_alignment.rb +156 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/empty_comment.rb +151 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/empty_line_after_guard_clause.rb +181 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/empty_line_after_magic_comment.rb +64 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/empty_line_after_multiline_condition.rb +136 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/empty_line_between_defs.rb +296 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/empty_lines.rb +73 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/empty_lines_around_access_modifier.rb +211 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/empty_lines_around_arguments.rb +103 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/empty_lines_around_attribute_accessor.rb +139 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/empty_lines_around_begin_body.rb +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/empty_lines_around_block_body.rb +40 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/empty_lines_around_class_body.rb +85 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/empty_lines_around_exception_handling_keywords.rb +135 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/empty_lines_around_method_body.rb +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/empty_lines_around_module_body.rb +59 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/end_alignment.rb +198 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/end_of_line.rb +92 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/extra_spacing.rb +191 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/first_argument_indentation.rb +287 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/first_array_element_indentation.rb +180 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/first_array_element_line_break.rb +68 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/first_hash_element_indentation.rb +239 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/first_hash_element_line_break.rb +68 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/first_method_argument_line_break.rb +97 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/first_method_parameter_line_break.rb +75 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/first_parameter_indentation.rb +101 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/hash_alignment.rb +396 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/heredoc_argument_closing_parenthesis.rb +311 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/heredoc_indentation.rb +162 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/indentation_consistency.rb +205 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/indentation_style.rb +115 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/indentation_width.rb +389 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/initial_indentation.rb +55 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/leading_comment_space.rb +121 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/leading_empty_lines.rb +48 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/line_continuation_leading_space.rb +136 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/line_continuation_spacing.rb +140 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/line_end_string_concatenation_indentation.rb +143 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/line_length.rb +276 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/multiline_array_brace_layout.rb +115 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/multiline_array_line_breaks.rb +65 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/multiline_assignment_layout.rb +117 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/multiline_block_layout.rb +161 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/multiline_hash_brace_layout.rb +115 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/multiline_hash_key_line_breaks.rb +74 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/multiline_method_argument_line_breaks.rb +87 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/multiline_method_call_brace_layout.rb +131 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/multiline_method_call_indentation.rb +248 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/multiline_method_definition_brace_layout.rb +128 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/multiline_method_parameter_line_breaks.rb +77 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/multiline_operation_indentation.rb +127 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/parameter_alignment.rb +119 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/redundant_line_break.rb +138 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/rescue_ensure_alignment.rb +211 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/single_line_block_chain.rb +64 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/space_after_colon.rb +49 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/space_after_comma.rb +40 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/space_after_method_name.rb +39 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/space_after_not.rb +39 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/space_after_semicolon.rb +29 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/space_around_block_parameters.rb +162 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/space_around_equals_in_parameter_default.rb +89 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/space_around_keyword.rb +268 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/space_around_method_call_operator.rb +98 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/space_around_operators.rb +260 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/space_before_block_braces.rb +154 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/space_before_brackets.rb +73 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/space_before_comma.rb +29 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/space_before_comment.rb +34 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/space_before_first_arg.rb +73 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/space_before_semicolon.rb +24 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/space_in_lambda_literal.rb +78 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/space_inside_array_literal_brackets.rb +224 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/space_inside_array_percent_literal.rb +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/space_inside_block_braces.rb +263 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/space_inside_hash_literal_braces.rb +208 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/space_inside_parens.rb +176 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/space_inside_percent_literal_delimiters.rb +94 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/space_inside_range_literal.rb +54 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/space_inside_reference_brackets.rb +143 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/space_inside_string_interpolation.rb +65 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/trailing_empty_lines.rb +108 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/layout/trailing_whitespace.rb +131 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/legacy/corrections_proxy.rb +43 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/legacy/corrector.rb +27 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/ambiguous_assignment.rb +54 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/ambiguous_block_association.rb +107 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/ambiguous_operator.rb +107 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/ambiguous_operator_precedence.rb +111 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/ambiguous_range.rb +105 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/ambiguous_regexp_literal.rb +80 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/assignment_in_condition.rb +109 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/big_decimal_new.rb +44 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/binary_operator_with_identical_operands.rb +68 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/boolean_symbol.rb +63 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/circular_argument_reference.rb +72 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/constant_definition_in_block.rb +100 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/constant_overwritten_in_rescue.rb +51 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/constant_resolution.rb +93 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/debugger.rb +115 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/deprecated_class_methods.rb +118 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/deprecated_constants.rb +88 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/deprecated_open_ssl_constant.rb +154 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/disjunctive_assignment_in_constructor.rb +110 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/duplicate_branch.rb +153 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/duplicate_case_condition.rb +43 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/duplicate_elsif_condition.rb +39 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/duplicate_hash_key.rb +37 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/duplicate_magic_comment.rb +73 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/duplicate_match_pattern.rb +122 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/duplicate_methods.rb +268 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/duplicate_regexp_character_class_element.rb +121 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/duplicate_require.rb +56 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/duplicate_rescue_exception.rb +47 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/each_with_object_argument.rb +44 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/else_layout.rb +90 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/empty_block.rb +94 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/empty_class.rb +95 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/empty_conditional_body.rb +177 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/empty_ensure.rb +58 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/empty_expression.rb +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/empty_file.rb +48 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/empty_in_pattern.rb +64 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/empty_interpolation.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/empty_when.rb +63 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/ensure_return.rb +59 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/erb_new_arguments.rb +161 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/flip_flop.rb +38 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/float_comparison.rb +93 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/float_out_of_range.rb +34 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/format_parameter_mismatch.rb +201 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/hash_compare_by_identity.rb +47 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/heredoc_method_call_position.rb +152 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/identity_comparison.rb +50 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/implicit_string_concatenation.rb +101 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/incompatible_io_select_with_fiber_scheduler.rb +81 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/ineffective_access_modifier.rb +121 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/inherit_exception.rb +105 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/interpolation_check.rb +59 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/lambda_without_literal_block.rb +51 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/literal_as_condition.rb +164 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/literal_in_interpolation.rb +173 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/loop.rb +86 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/missing_cop_enable_directive.rb +111 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/missing_super.rb +159 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/mixed_case_range.rb +111 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/mixed_regexp_capture_types.rb +37 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/multiple_comparison.rb +48 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/nested_method_definition.rb +144 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/nested_percent_literal.rb +63 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/next_without_accumulator.rb +70 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/no_return_in_begin_end_blocks.rb +58 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/non_atomic_file_operation.rb +162 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/non_deterministic_require_order.rb +185 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/non_local_exit_from_iterator.rb +86 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/number_conversion.rb +196 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/numbered_parameter_assignment.rb +47 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/or_assignment_to_constant.rb +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/ordered_magic_comments.rb +81 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/out_of_range_regexp_ref.rb +128 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/parentheses_as_grouped_expression.rb +92 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/percent_string_array.rb +78 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/percent_symbol_array.rb +68 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/raise_exception.rb +91 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/rand_one.rb +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/redundant_cop_disable_directive.rb +330 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/redundant_cop_enable_directive.rb +133 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/redundant_dir_glob_sort.rb +62 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/redundant_regexp_quantifiers.rb +130 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/redundant_require_statement.rb +95 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/redundant_safe_navigation.rb +91 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/redundant_splat_expansion.rb +209 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/redundant_string_coercion.rb +72 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/redundant_with_index.rb +80 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/redundant_with_object.rb +79 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/refinement_import_methods.rb +52 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/regexp_as_condition.rb +37 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/require_parentheses.rb +66 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/require_range_parentheses.rb +57 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/require_relative_self_path.rb +50 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/rescue_exception.rb +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/rescue_type.rb +88 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/return_in_void_context.rb +59 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/safe_navigation_chain.rb +98 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/safe_navigation_consistency.rb +92 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/safe_navigation_with_empty.rb +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/script_permission.rb +73 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/self_assignment.rb +78 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/send_with_mixin_argument.rb +83 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/shadowed_argument.rb +176 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/shadowed_exception.rb +165 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/shadowing_outer_local_variable.rb +102 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/struct_new_override.rb +59 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/suppressed_exception.rb +132 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/symbol_conversion.rb +179 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/syntax.rb +43 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/to_enum_arguments.rb +99 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/to_json.rb +49 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/top_level_return_with_argument.rb +48 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/trailing_comma_in_attribute_declaration.rb +55 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/triple_quotes.rb +71 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/underscore_prefixed_variable_name.rb +80 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/unexpected_block_arity.rb +90 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/unified_integer.rb +44 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/unmodified_reduce_accumulator.rb +204 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/unreachable_code.rb +97 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/unreachable_loop.rb +202 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/unused_block_argument.rb +172 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/unused_method_argument.rb +121 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/uri_escape_unescape.rb +79 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/uri_regexp.rb +38 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/useless_access_modifier.rb +295 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/useless_assignment.rb +183 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/useless_else_without_rescue.rb +44 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/useless_method_definition.rb +77 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/useless_rescue.rb +89 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/useless_ruby2_keywords.rb +127 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/useless_setter_call.rb +173 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/useless_times.rb +114 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/lint/void.rb +205 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/message_annotator.rb +130 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/metrics/abc_size.rb +56 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/metrics/block_length.rb +86 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/metrics/block_nesting.rb +60 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/metrics/class_length.rb +71 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/metrics/collection_literal_length.rb +76 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/metrics/cyclomatic_complexity.rb +55 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/metrics/method_length.rb +71 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/metrics/module_length.rb +61 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/metrics/parameter_lists.rb +147 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/metrics/perceived_complexity.rb +59 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/metrics/utils/abc_size_calculator.rb +140 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/metrics/utils/code_length_calculator.rb +210 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/metrics/utils/iterating_block.rb +61 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/metrics/utils/repeated_attribute_discount.rb +143 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/metrics/utils/repeated_csend_discount.rb +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/migration/department_name.rb +81 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/alignment.rb +81 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/allowed_identifiers.rb +18 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/allowed_methods.rb +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/allowed_pattern.rb +56 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/allowed_receivers.rb +34 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/annotation_comment.rb +72 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/array_min_size.rb +57 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/array_syntax.rb +17 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/auto_corrector.rb +12 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/check_assignment.rb +44 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/check_line_breakable.rb +227 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/code_length.rb +59 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/comments_help.rb +86 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/configurable_enforced_style.rb +112 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/configurable_formatting.rb +40 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/configurable_max.rb +24 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/configurable_naming.rb +16 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/configurable_numbering.rb +18 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/def_node.rb +26 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/documentation_comment.rb +52 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/duplication.rb +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/empty_lines_around_body.rb +172 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/empty_parameter.rb +25 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/end_keyword_alignment.rb +80 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/enforce_superclass.rb +44 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/first_element_line_break.rb +50 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/frozen_string_literal.rb +88 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/gem_declaration.rb +13 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/gemspec_help.rb +30 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/hash_alignment_styles.rb +156 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/hash_shorthand_syntax.rb +226 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/hash_transform_method.rb +192 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/heredoc.rb +41 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/integer_node.rb +14 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/interpolation.rb +25 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/line_length_help.rb +110 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/match_range.rb +23 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/method_complexity.rb +74 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/method_preference.rb +30 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/min_body_length.rb +21 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/min_branches_count.rb +40 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/multiline_element_indentation.rb +109 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/multiline_element_line_breaks.rb +32 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/multiline_expression_indentation.rb +227 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/multiline_literal_brace_layout.rb +141 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/negative_conditional.rb +34 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/nil_methods.rb +23 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/on_normal_if_unless.rb +14 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/ordered_gem_node.rb +66 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/parentheses.rb +16 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/percent_array.rb +125 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/percent_literal.rb +32 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/preceding_following_alignment.rb +183 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/preferred_delimiters.rb +50 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/range_help.rb +149 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/rational_literal.rb +19 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/require_library.rb +61 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/rescue_node.rb +30 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/safe_assignment.rb +27 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/space_after_punctuation.rb +54 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/space_before_punctuation.rb +49 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/statement_modifier.rb +109 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/string_help.rb +38 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/string_literals_help.rb +21 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/surrounding_space.rb +134 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/symbol_help.rb +13 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/target_ruby_version.rb +20 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/trailing_body.rb +25 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/trailing_comma.rb +209 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/uncommunicative_name.rb +104 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/unused_argument.rb +29 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/mixin/visibility_help.rb +72 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/naming/accessor_method_name.rb +73 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/naming/ascii_identifiers.rb +90 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/naming/binary_operator_parameter_name.rb +53 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/naming/block_forwarding.rb +125 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/naming/block_parameter_name.rb +49 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/naming/class_and_module_camel_case.rb +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/naming/constant_name.rb +84 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/naming/file_name.rb +247 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/naming/heredoc_delimiter_case.rb +68 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/naming/heredoc_delimiter_naming.rb +55 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/naming/inclusive_language.rb +289 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/naming/memoized_instance_variable_name.rb +295 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/naming/method_name.rb +81 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/naming/method_parameter_name.rb +58 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/naming/predicate_name.rb +134 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/naming/rescued_exceptions_variable_name.rb +171 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/naming/variable_name.rb +68 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/naming/variable_number.rb +156 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/offense.rb +239 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/registry.rb +315 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/security/compound_hash.rb +106 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/security/eval.rb +33 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/security/io_methods.rb +49 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/security/json_load.rb +47 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/security/marshal_load.rb +39 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/security/open.rb +89 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/security/yaml_load.rb +49 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/severity.rb +67 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/access_modifier_declarations.rb +225 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/accessor_grouping.rb +180 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/alias.rb +156 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/and_or.rb +158 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/arguments_forwarding.rb +155 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/array_coercion.rb +87 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/array_intersect.rb +111 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/array_join.rb +39 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/ascii_comments.rb +57 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/attr.rb +80 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/auto_resource_cleanup.rb +48 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/bare_percent_literals.rb +76 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/begin_block.rb +21 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/bisected_attr_accessor/macro.rb +60 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/bisected_attr_accessor.rb +125 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/block_comments.rb +66 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/block_delimiters.rb +471 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/case_equality.rb +108 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/case_like_if.rb +280 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/character_literal.rb +57 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/class_and_module_children.rb +186 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/class_check.rb +54 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/class_equality_comparison.rb +127 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/class_methods.rb +54 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/class_methods_definitions.rb +158 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/class_vars.rb +64 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/collection_compact.rb +133 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/collection_methods.rb +90 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/colon_method_call.rb +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/colon_method_definition.rb +37 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/combinable_loops.rb +115 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/command_literal.rb +181 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/comment_annotation.rb +130 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/commented_keyword.rb +92 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/comparable_clamp.rb +125 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/concat_array_literals.rb +94 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/conditional_assignment.rb +663 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/constant_visibility.rb +106 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/copyright.rb +99 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/data_inheritance.rb +75 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/date_time.rb +93 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/def_with_parentheses.rb +59 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/dir.rb +50 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/dir_empty.rb +54 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/disable_cops_within_source_code_directive.rb +87 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/document_dynamic_eval_definition.rb +169 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/documentation.rb +198 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/documentation_method.rb +132 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/double_cop_disable_directive.rb +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/double_negation.rb +159 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/each_for_simple_loop.rb +90 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/each_with_object.rb +139 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/empty_block_parameter.rb +47 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/empty_case_condition.rb +112 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/empty_else.rb +204 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/empty_heredoc.rb +73 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/empty_lambda_parameter.rb +44 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/empty_literal.rb +138 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/empty_method.rb +119 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/encoding.rb +63 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/end_block.rb +28 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/endless_method.rb +101 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/env_home.rb +56 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/eval_with_location.rb +237 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/even_odd.rb +56 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/exact_regexp_match.rb +68 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/expand_path_arguments.rb +196 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/explicit_block_argument.rb +153 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/exponential_notation.rb +116 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/fetch_env_var.rb +132 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/file_empty.rb +71 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/file_read.rb +112 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/file_write.rb +136 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/float_division.rb +151 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/for.rb +88 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/format_string.rb +133 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/format_string_token.rb +228 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/frozen_string_literal_comment.rb +218 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/global_std_stream.rb +70 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/global_vars.rb +80 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/guard_clause.rb +277 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/hash_as_last_array_item.rb +100 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/hash_conversion.rb +134 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/hash_each_methods.rb +123 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/hash_except.rb +188 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/hash_like_case.rb +71 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/hash_syntax.rb +279 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/hash_transform_keys.rb +95 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/hash_transform_values.rb +93 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/identical_conditional_branches.rb +229 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/if_inside_else.rb +156 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/if_unless_modifier.rb +295 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/if_unless_modifier_of_if_unless.rb +47 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/if_with_boolean_literal_branches.rb +163 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/if_with_semicolon.rb +78 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/implicit_runtime_error.rb +34 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/in_pattern_then.rb +56 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/infinite_loop.rb +127 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/inline_comment.rb +34 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/inverse_methods.rb +196 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/invertible_unless_condition.rb +118 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/ip_addresses.rb +75 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/keyword_parameters_order.rb +75 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/lambda.rb +125 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/lambda_call.rb +68 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/line_end_concatenation.rb +137 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/magic_comment_format.rb +307 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/map_compact_with_conditional_block.rb +136 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/map_to_hash.rb +71 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/map_to_set.rb +64 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/method_call_with_args_parentheses/omit_parentheses.rb +225 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/method_call_with_args_parentheses/require_parentheses.rb +48 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/method_call_with_args_parentheses.rb +248 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/method_call_without_args_parentheses.rb +103 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/method_called_on_do_end_block.rb +56 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/method_def_parentheses.rb +180 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/min_max.rb +64 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/min_max_comparison.rb +83 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/missing_else.rb +187 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/missing_respond_to_missing.rb +52 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/mixin_grouping.rb +135 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/mixin_usage.rb +72 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/module_function.rb +170 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/multiline_block_chain.rb +50 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/multiline_if_modifier.rb +56 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/multiline_if_then.rb +44 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/multiline_in_pattern_then.rb +60 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/multiline_memoization.rb +96 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/multiline_method_signature.rb +94 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/multiline_ternary_operator.rb +100 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/multiline_when_then.rb +64 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/multiple_comparison.rb +171 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/mutable_constant.rb +247 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/negated_if.rb +98 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/negated_if_else_condition.rb +135 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/negated_unless.rb +88 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/negated_while.rb +40 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/nested_file_dirname.rb +66 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/nested_modifier.rb +100 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/nested_parenthesized_calls.rb +79 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/nested_ternary_operator.rb +70 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/next.rb +233 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/nil_comparison.rb +83 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/nil_lambda.rb +70 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/non_nil_check.rb +158 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/not.rb +76 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/numbered_parameters.rb +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/numbered_parameters_limit.rb +58 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/numeric_literal_prefix.rb +119 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/numeric_literals.rb +129 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/numeric_predicate.rb +177 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/object_then.rb +74 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/one_line_conditional.rb +123 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/open_struct_use.rb +69 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/operator_method_call.rb +67 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/option_hash.rb +54 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/optional_arguments.rb +59 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/optional_boolean_parameter.rb +64 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/or_assignment.rb +97 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/parallel_assignment.rb +300 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/parentheses_around_condition.rb +128 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/percent_literal_delimiters.rb +118 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/percent_q_literals.rb +70 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/perl_backrefs.rb +127 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/preferred_hash_methods.rb +74 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/proc.rb +37 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/quoted_symbols.rb +124 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/raise_args.rb +155 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/random_with_offset.rb +153 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/redundant_argument.rb +98 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/redundant_array_constructor.rb +77 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/redundant_assignment.rb +106 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/redundant_begin.rb +192 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/redundant_capital_w.rb +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/redundant_condition.rb +270 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/redundant_conditional.rb +92 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/redundant_constant_base.rb +85 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/redundant_current_directory_in_path.rb +38 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/redundant_double_splat_hash_braces.rb +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/redundant_each.rb +116 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/redundant_exception.rb +65 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/redundant_fetch_block.rb +121 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/redundant_file_extension_in_require.rb +61 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/redundant_filter_chain.rb +101 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/redundant_freeze.rb +69 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/redundant_heredoc_delimiter_quotes.rb +58 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/redundant_initialize.rb +156 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/redundant_interpolation.rb +138 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/redundant_line_continuation.rb +183 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/redundant_parentheses.rb +242 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/redundant_percent_q.rb +108 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/redundant_regexp_argument.rb +100 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/redundant_regexp_character_class.rb +119 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/redundant_regexp_constructor.rb +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/redundant_regexp_escape.rb +136 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/redundant_return.rb +178 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/redundant_self.rb +203 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/redundant_self_assignment.rb +118 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/redundant_self_assignment_branch.rb +85 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/redundant_sort.rb +208 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/redundant_sort_by.rb +63 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/redundant_string_escape.rb +185 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/regexp_literal.rb +231 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/require_order.rb +139 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/rescue_modifier.rb +98 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/rescue_standard_error.rb +126 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/return_nil.rb +95 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/return_nil_in_predicate_method_definition.rb +81 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/safe_navigation.rb +326 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/sample.rb +145 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/select_by_regexp.rb +162 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/self_assignment.rb +101 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/semicolon.rb +167 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/send.rb +29 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/signal_exception.rb +218 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/single_argument_dig.rb +65 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/single_line_block_params.rb +119 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/single_line_methods.rb +145 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/slicing_with_range.rb +51 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/sole_nested_conditional.rb +250 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/special_global_vars.rb +260 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/stabby_lambda_parentheses.rb +79 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/static_class.rb +128 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/stderr_puts.rb +57 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/string_chars.rb +41 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/string_concatenation.rb +178 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/string_hash_keys.rb +58 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/string_literals.rb +129 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/string_literals_in_interpolation.rb +51 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/string_methods.rb +36 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/strip.rb +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/struct_inheritance.rb +72 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/swap_values.rb +112 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/symbol_array.rb +113 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/symbol_literal.rb +28 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/symbol_proc.rb +210 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/ternary_parentheses.rb +219 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/top_level_method_definition.rb +85 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/trailing_body_on_class.rb +41 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/trailing_body_on_method_definition.rb +55 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/trailing_body_on_module.rb +40 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/trailing_comma_in_arguments.rb +106 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/trailing_comma_in_array_literal.rb +96 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/trailing_comma_in_block_args.rb +105 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/trailing_comma_in_hash_literal.rb +97 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/trailing_method_end_statement.rb +62 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/trailing_underscore_variable.rb +152 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/trivial_accessors.rb +254 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/unless_else.rb +55 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/unless_logical_operators.rb +106 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/unpack_first.rb +62 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/variable_interpolation.rb +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/when_then.rb +37 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/while_until_do.rb +49 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/while_until_modifier.rb +53 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/word_array.rb +155 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/yaml_file_read.rb +66 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/yoda_condition.rb +181 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/yoda_expression.rb +90 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/style/zero_length_predicate.rb +146 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/team.rb +266 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/util.rb +203 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/utils/format_string.rb +133 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/utils/regexp_ranges.rb +100 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/variable_force/assignment.rb +139 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/variable_force/branch.rb +331 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/variable_force/branchable.rb +23 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/variable_force/reference.rb +47 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/variable_force/scope.rb +106 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/variable_force/variable.rb +116 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/variable_force/variable_table.rb +131 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cop/variable_force.rb +439 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/cops_documentation_generator.rb +329 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/core_ext/string.rb +23 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/directive_comment.rb +144 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/error.rb +35 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/ext/comment.rb +18 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/ext/processed_source.rb +20 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/ext/range.rb +15 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/ext/regexp_node.rb +87 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/ext/regexp_parser.rb +95 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/feature_loader.rb +94 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/file_finder.rb +41 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/file_patterns.rb +43 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/formatter/auto_gen_config_formatter.rb +17 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/formatter/base_formatter.rb +119 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/formatter/clang_style_formatter.rb +59 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/formatter/colorizable.rb +41 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/formatter/disabled_config_formatter.rb +267 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/formatter/emacs_style_formatter.rb +39 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/formatter/file_list_formatter.rb +20 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/formatter/formatter_set.rb +108 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/formatter/fuubar_style_formatter.rb +80 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/formatter/git_hub_actions_formatter.rb +57 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/formatter/html_formatter.rb +132 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/formatter/json_formatter.rb +80 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/formatter/junit_formatter.rb +96 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/formatter/markdown_formatter.rb +78 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/formatter/offense_count_formatter.rb +83 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/formatter/pacman_formatter.rb +80 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/formatter/progress_formatter.rb +62 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/formatter/quiet_formatter.rb +13 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/formatter/simple_text_formatter.rb +172 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/formatter/tap_formatter.rb +86 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/formatter/text_util.rb +20 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/formatter/worst_offenders_formatter.rb +64 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/formatter.rb +34 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/lockfile.rb +40 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/lsp/logger.rb +22 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/lsp/routes.rb +231 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/lsp/runtime.rb +82 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/lsp/server.rb +66 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/lsp/severity.rb +27 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/magic_comment.rb +298 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/name_similarity.rb +29 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/options.rb +641 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/path_util.rb +111 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/platform.rb +11 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/rake_task.rb +106 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/remote_config.rb +108 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/result_cache.rb +237 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/rspec/cop_helper.rb +93 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/rspec/expect_offense.rb +335 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/rspec/host_environment_simulation_helper.rb +28 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/rspec/parallel_formatter.rb +90 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/rspec/shared_contexts.rb +178 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/rspec/support.rb +29 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/runner.rb +496 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/server/cache.rb +155 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/server/cli.rb +147 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/server/client_command/base.rb +44 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/server/client_command/exec.rb +65 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/server/client_command/restart.rb +25 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/server/client_command/start.rb +48 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/server/client_command/status.rb +28 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/server/client_command/stop.rb +31 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/server/client_command.rb +26 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/server/core.rb +111 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/server/errors.rb +23 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/server/helper.rb +34 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/server/server_command/base.rb +50 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/server/server_command/exec.rb +34 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/server/server_command/stop.rb +24 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/server/server_command.rb +21 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/server/socket_reader.rb +69 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/server.rb +53 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/string_interpreter.rb +60 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/target_finder.rb +206 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/target_ruby.rb +272 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/util.rb +16 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/version.rb +102 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/warning.rb +11 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop/yaml_duplication_checker.rb +40 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-1.54.1/lib/rubocop.rb +765 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/LICENSE.txt +20 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/README.md +133 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/config/default.yml +1182 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/config/obsoletion.yml +17 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/mixin/active_record_helper.rb +106 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/mixin/active_record_migrations_helper.rb +32 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/mixin/class_send_node_helper.rb +20 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/mixin/enforce_superclass.rb +40 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/mixin/index_method.rb +165 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/mixin/migrations_helper.rb +26 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/mixin/target_rails_version.rb +16 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/action_controller_flash_before_render.rb +112 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/action_controller_test_case.rb +47 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/action_filter.rb +107 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/action_order.rb +116 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/active_record_aliases.rb +47 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/active_record_callbacks_order.rb +143 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/active_record_override.rb +79 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/active_support_aliases.rb +60 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/active_support_on_load.rb +70 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/add_column_index.rb +61 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/after_commit_override.rb +81 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/application_controller.rb +36 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/application_job.rb +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/application_mailer.rb +39 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/application_record.rb +40 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/arel_star.rb +47 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/assert_not.rb +41 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/attribute_default_block_value.rb +90 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/belongs_to.rb +90 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/blank.rb +168 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/bulk_change_table.rb +294 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/compact_blank.rb +111 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/content_tag.rb +93 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/create_table_with_timestamps.rb +98 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/date.rb +175 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/default_scope.rb +61 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/delegate.rb +136 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/delegate_allow_blank.rb +36 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/deprecated_active_model_errors_methods.rb +168 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/dot_separated_keys.rb +71 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/duplicate_association.rb +56 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/duplicate_scope.rb +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/duration_arithmetic.rb +98 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/dynamic_find_by.rb +136 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/eager_evaluation_log_message.rb +82 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/enum_hash.rb +75 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/enum_uniqueness.rb +63 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/environment_comparison.rb +116 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/environment_variable_access.rb +67 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/exit.rb +61 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/expanded_date_range.rb +102 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/file_path.rb +238 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/find_by.rb +74 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/find_by_id.rb +94 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/find_each.rb +75 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/freeze_time.rb +79 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/has_and_belongs_to_many.rb +26 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/has_many_or_has_one_dependent.rb +143 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/helper_instance_variable.rb +67 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/http_positional_arguments.rb +146 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/http_status.rb +164 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/i18n_lazy_lookup.rb +96 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/i18n_locale_assignment.rb +37 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/i18n_locale_texts.rb +114 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/ignored_columns_assignment.rb +50 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/ignored_skip_action_filter_option.rb +107 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/index_by.rb +65 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/index_with.rb +68 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/inquiry.rb +39 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/inverse_of.rb +252 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/lexically_scoped_action_filter.rb +205 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/link_to_blank.rb +97 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/mailer_name.rb +90 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/match_route.rb +120 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/migration_class_name.rb +63 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/negate_include.rb +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/not_null_column.rb +71 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/order_by_id.rb +51 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/output.rb +68 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/output_safety.rb +104 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/pick.rb +64 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/pluck.rb +96 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/pluck_id.rb +59 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/pluck_in_where.rb +71 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/pluralization_grammar.rb +102 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/presence.rb +152 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/present.rb +156 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/rake_environment.rb +112 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/read_write_attribute.rb +112 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/redundant_allow_nil.rb +99 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/redundant_foreign_key.rb +77 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/redundant_presence_validation_on_belongs_to.rb +257 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/redundant_receiver_in_with_options.rb +138 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/redundant_travel_back.rb +57 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/reflection_class_name.rb +86 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/refute_methods.rb +96 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/relative_date_constant.rb +112 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/render_inline.rb +41 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/render_plain_text.rb +71 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/request_referer.rb +55 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/require_dependency.rb +38 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/response_parsed_body.rb +57 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/reversible_migration.rb +326 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/reversible_migration_method_definition.rb +66 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/root_join_chain.rb +72 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/root_pathname_methods.rb +238 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/root_public_path.rb +59 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/safe_navigation.rb +99 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/safe_navigation_with_blank.rb +50 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/save_bang.rb +342 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/schema_comment.rb +104 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/scope_args.rb +34 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/short_i18n.rb +71 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/skips_model_validations.rb +124 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/squished_sql_heredocs.rb +86 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/strip_heredoc.rb +56 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/table_name_assignment.rb +44 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/three_state_boolean_column.rb +71 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/time_zone.rb +254 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/time_zone_assignment.rb +37 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/to_formatted_s.rb +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/to_s_with_argument.rb +78 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/top_level_hash_with_indifferent_access.rb +49 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/transaction_exit_statement.rb +106 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/uniq_before_pluck.rb +96 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/unique_validation_without_index.rb +168 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/unknown_env.rb +94 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/unused_ignored_columns.rb +76 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/validation.rb +140 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/where_equals.rb +102 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/where_exists.rb +138 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/where_missing.rb +118 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/where_not.rb +101 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails/where_not_with_multiple_conditions.rb +55 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/cop/rails_cops.rb +134 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/rails/inject.rb +18 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/rails/schema_loader/schema.rb +191 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/rails/schema_loader.rb +61 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/rails/version.rb +14 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop/rails.rb +14 -0
- data/vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.20.2/lib/rubocop-rails.rb +34 -0
- data/vendor/bundle/ruby/3.2.0/specifications/activesupport-7.0.6.gemspec +30 -0
- data/vendor/bundle/ruby/3.2.0/specifications/language_server-protocol-3.17.0.3.gemspec +31 -0
- data/vendor/bundle/ruby/3.2.0/specifications/minitest-5.18.1.gemspec +31 -0
- data/vendor/bundle/ruby/3.2.0/specifications/racc-1.7.1.gemspec +27 -0
- data/vendor/bundle/ruby/3.2.0/specifications/rack-3.0.8.gemspec +31 -0
- data/vendor/bundle/ruby/3.2.0/specifications/rspec-support-3.12.1.gemspec +29 -0
- data/vendor/bundle/ruby/3.2.0/specifications/rubocop-1.54.1.gemspec +39 -0
- data/vendor/bundle/ruby/3.2.0/specifications/rubocop-rails-2.20.2.gemspec +30 -0
- metadata +1779 -4
@@ -0,0 +1,907 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'forwardable'
|
4
|
+
|
5
|
+
require_relative 'constants'
|
6
|
+
require_relative 'utils'
|
7
|
+
|
8
|
+
module Rack
|
9
|
+
# Rack::Lint validates your application and the requests and
|
10
|
+
# responses according to the Rack spec.
|
11
|
+
|
12
|
+
class Lint
|
13
|
+
def initialize(app)
|
14
|
+
@app = app
|
15
|
+
end
|
16
|
+
|
17
|
+
# :stopdoc:
|
18
|
+
|
19
|
+
class LintError < RuntimeError; end
|
20
|
+
# AUTHORS: n.b. The trailing whitespace between paragraphs is important and
|
21
|
+
# should not be removed. The whitespace creates paragraphs in the RDoc
|
22
|
+
# output.
|
23
|
+
#
|
24
|
+
## This specification aims to formalize the Rack protocol. You
|
25
|
+
## can (and should) use Rack::Lint to enforce it.
|
26
|
+
##
|
27
|
+
## When you develop middleware, be sure to add a Lint before and
|
28
|
+
## after to catch all mistakes.
|
29
|
+
##
|
30
|
+
## = Rack applications
|
31
|
+
##
|
32
|
+
## A Rack application is a Ruby object (not a class) that
|
33
|
+
## responds to +call+.
|
34
|
+
def call(env = nil)
|
35
|
+
Wrapper.new(@app, env).response
|
36
|
+
end
|
37
|
+
|
38
|
+
class Wrapper
|
39
|
+
def initialize(app, env)
|
40
|
+
@app = app
|
41
|
+
@env = env
|
42
|
+
@response = nil
|
43
|
+
@head_request = false
|
44
|
+
|
45
|
+
@status = nil
|
46
|
+
@headers = nil
|
47
|
+
@body = nil
|
48
|
+
@invoked = nil
|
49
|
+
@content_length = nil
|
50
|
+
@closed = false
|
51
|
+
@size = 0
|
52
|
+
end
|
53
|
+
|
54
|
+
def response
|
55
|
+
## It takes exactly one argument, the *environment*
|
56
|
+
raise LintError, "No env given" unless @env
|
57
|
+
check_environment(@env)
|
58
|
+
|
59
|
+
@env[RACK_INPUT] = InputWrapper.new(@env[RACK_INPUT])
|
60
|
+
@env[RACK_ERRORS] = ErrorWrapper.new(@env[RACK_ERRORS])
|
61
|
+
|
62
|
+
## and returns a non-frozen Array of exactly three values:
|
63
|
+
@response = @app.call(@env)
|
64
|
+
raise LintError, "response is not an Array, but #{@response.class}" unless @response.kind_of? Array
|
65
|
+
raise LintError, "response is frozen" if @response.frozen?
|
66
|
+
raise LintError, "response array has #{@response.size} elements instead of 3" unless @response.size == 3
|
67
|
+
|
68
|
+
@status, @headers, @body = @response
|
69
|
+
## The *status*,
|
70
|
+
check_status(@status)
|
71
|
+
|
72
|
+
## the *headers*,
|
73
|
+
check_headers(@headers)
|
74
|
+
|
75
|
+
hijack_proc = check_hijack_response(@headers, @env)
|
76
|
+
if hijack_proc
|
77
|
+
@headers[RACK_HIJACK] = hijack_proc
|
78
|
+
end
|
79
|
+
|
80
|
+
## and the *body*.
|
81
|
+
check_content_type(@status, @headers)
|
82
|
+
check_content_length(@status, @headers)
|
83
|
+
@head_request = @env[REQUEST_METHOD] == HEAD
|
84
|
+
|
85
|
+
@lint = (@env['rack.lint'] ||= []) << self
|
86
|
+
|
87
|
+
if (@env['rack.lint.body_iteration'] ||= 0) > 0
|
88
|
+
raise LintError, "Middleware must not call #each directly"
|
89
|
+
end
|
90
|
+
|
91
|
+
return [@status, @headers, self]
|
92
|
+
end
|
93
|
+
|
94
|
+
##
|
95
|
+
## == The Environment
|
96
|
+
##
|
97
|
+
def check_environment(env)
|
98
|
+
## The environment must be an unfrozen instance of Hash that includes
|
99
|
+
## CGI-like headers. The Rack application is free to modify the
|
100
|
+
## environment.
|
101
|
+
raise LintError, "env #{env.inspect} is not a Hash, but #{env.class}" unless env.kind_of? Hash
|
102
|
+
raise LintError, "env should not be frozen, but is" if env.frozen?
|
103
|
+
|
104
|
+
##
|
105
|
+
## The environment is required to include these variables
|
106
|
+
## (adopted from {PEP 333}[https://peps.python.org/pep-0333/]), except when they'd be empty, but see
|
107
|
+
## below.
|
108
|
+
|
109
|
+
## <tt>REQUEST_METHOD</tt>:: The HTTP request method, such as
|
110
|
+
## "GET" or "POST". This cannot ever
|
111
|
+
## be an empty string, and so is
|
112
|
+
## always required.
|
113
|
+
|
114
|
+
## <tt>SCRIPT_NAME</tt>:: The initial portion of the request
|
115
|
+
## URL's "path" that corresponds to the
|
116
|
+
## application object, so that the
|
117
|
+
## application knows its virtual
|
118
|
+
## "location". This may be an empty
|
119
|
+
## string, if the application corresponds
|
120
|
+
## to the "root" of the server.
|
121
|
+
|
122
|
+
## <tt>PATH_INFO</tt>:: The remainder of the request URL's
|
123
|
+
## "path", designating the virtual
|
124
|
+
## "location" of the request's target
|
125
|
+
## within the application. This may be an
|
126
|
+
## empty string, if the request URL targets
|
127
|
+
## the application root and does not have a
|
128
|
+
## trailing slash. This value may be
|
129
|
+
## percent-encoded when originating from
|
130
|
+
## a URL.
|
131
|
+
|
132
|
+
## <tt>QUERY_STRING</tt>:: The portion of the request URL that
|
133
|
+
## follows the <tt>?</tt>, if any. May be
|
134
|
+
## empty, but is always required!
|
135
|
+
|
136
|
+
## <tt>SERVER_NAME</tt>:: When combined with <tt>SCRIPT_NAME</tt> and
|
137
|
+
## <tt>PATH_INFO</tt>, these variables can be
|
138
|
+
## used to complete the URL. Note, however,
|
139
|
+
## that <tt>HTTP_HOST</tt>, if present,
|
140
|
+
## should be used in preference to
|
141
|
+
## <tt>SERVER_NAME</tt> for reconstructing
|
142
|
+
## the request URL.
|
143
|
+
## <tt>SERVER_NAME</tt> can never be an empty
|
144
|
+
## string, and so is always required.
|
145
|
+
|
146
|
+
## <tt>SERVER_PORT</tt>:: An optional +Integer+ which is the port the
|
147
|
+
## server is running on. Should be specified if
|
148
|
+
## the server is running on a non-standard port.
|
149
|
+
|
150
|
+
## <tt>SERVER_PROTOCOL</tt>:: A string representing the HTTP version used
|
151
|
+
## for the request.
|
152
|
+
|
153
|
+
## <tt>HTTP_</tt> Variables:: Variables corresponding to the
|
154
|
+
## client-supplied HTTP request
|
155
|
+
## headers (i.e., variables whose
|
156
|
+
## names begin with <tt>HTTP_</tt>). The
|
157
|
+
## presence or absence of these
|
158
|
+
## variables should correspond with
|
159
|
+
## the presence or absence of the
|
160
|
+
## appropriate HTTP header in the
|
161
|
+
## request. See
|
162
|
+
## {RFC3875 section 4.1.18}[https://tools.ietf.org/html/rfc3875#section-4.1.18]
|
163
|
+
## for specific behavior.
|
164
|
+
|
165
|
+
## In addition to this, the Rack environment must include these
|
166
|
+
## Rack-specific variables:
|
167
|
+
|
168
|
+
## <tt>rack.url_scheme</tt>:: +http+ or +https+, depending on the
|
169
|
+
## request URL.
|
170
|
+
|
171
|
+
## <tt>rack.input</tt>:: See below, the input stream.
|
172
|
+
|
173
|
+
## <tt>rack.errors</tt>:: See below, the error stream.
|
174
|
+
|
175
|
+
## <tt>rack.hijack?</tt>:: See below, if present and true, indicates
|
176
|
+
## that the server supports partial hijacking.
|
177
|
+
|
178
|
+
## <tt>rack.hijack</tt>:: See below, if present, an object responding
|
179
|
+
## to +call+ that is used to perform a full
|
180
|
+
## hijack.
|
181
|
+
|
182
|
+
## Additional environment specifications have approved to
|
183
|
+
## standardized middleware APIs. None of these are required to
|
184
|
+
## be implemented by the server.
|
185
|
+
|
186
|
+
## <tt>rack.session</tt>:: A hash-like interface for storing
|
187
|
+
## request session data.
|
188
|
+
## The store must implement:
|
189
|
+
if session = env[RACK_SESSION]
|
190
|
+
## store(key, value) (aliased as []=);
|
191
|
+
unless session.respond_to?(:store) && session.respond_to?(:[]=)
|
192
|
+
raise LintError, "session #{session.inspect} must respond to store and []="
|
193
|
+
end
|
194
|
+
|
195
|
+
## fetch(key, default = nil) (aliased as []);
|
196
|
+
unless session.respond_to?(:fetch) && session.respond_to?(:[])
|
197
|
+
raise LintError, "session #{session.inspect} must respond to fetch and []"
|
198
|
+
end
|
199
|
+
|
200
|
+
## delete(key);
|
201
|
+
unless session.respond_to?(:delete)
|
202
|
+
raise LintError, "session #{session.inspect} must respond to delete"
|
203
|
+
end
|
204
|
+
|
205
|
+
## clear;
|
206
|
+
unless session.respond_to?(:clear)
|
207
|
+
raise LintError, "session #{session.inspect} must respond to clear"
|
208
|
+
end
|
209
|
+
|
210
|
+
## to_hash (returning unfrozen Hash instance);
|
211
|
+
unless session.respond_to?(:to_hash) && session.to_hash.kind_of?(Hash) && !session.to_hash.frozen?
|
212
|
+
raise LintError, "session #{session.inspect} must respond to to_hash and return unfrozen Hash instance"
|
213
|
+
end
|
214
|
+
end
|
215
|
+
|
216
|
+
## <tt>rack.logger</tt>:: A common object interface for logging messages.
|
217
|
+
## The object must implement:
|
218
|
+
if logger = env[RACK_LOGGER]
|
219
|
+
## info(message, &block)
|
220
|
+
unless logger.respond_to?(:info)
|
221
|
+
raise LintError, "logger #{logger.inspect} must respond to info"
|
222
|
+
end
|
223
|
+
|
224
|
+
## debug(message, &block)
|
225
|
+
unless logger.respond_to?(:debug)
|
226
|
+
raise LintError, "logger #{logger.inspect} must respond to debug"
|
227
|
+
end
|
228
|
+
|
229
|
+
## warn(message, &block)
|
230
|
+
unless logger.respond_to?(:warn)
|
231
|
+
raise LintError, "logger #{logger.inspect} must respond to warn"
|
232
|
+
end
|
233
|
+
|
234
|
+
## error(message, &block)
|
235
|
+
unless logger.respond_to?(:error)
|
236
|
+
raise LintError, "logger #{logger.inspect} must respond to error"
|
237
|
+
end
|
238
|
+
|
239
|
+
## fatal(message, &block)
|
240
|
+
unless logger.respond_to?(:fatal)
|
241
|
+
raise LintError, "logger #{logger.inspect} must respond to fatal"
|
242
|
+
end
|
243
|
+
end
|
244
|
+
|
245
|
+
## <tt>rack.multipart.buffer_size</tt>:: An Integer hint to the multipart parser as to what chunk size to use for reads and writes.
|
246
|
+
if bufsize = env[RACK_MULTIPART_BUFFER_SIZE]
|
247
|
+
unless bufsize.is_a?(Integer) && bufsize > 0
|
248
|
+
raise LintError, "rack.multipart.buffer_size must be an Integer > 0 if specified"
|
249
|
+
end
|
250
|
+
end
|
251
|
+
|
252
|
+
## <tt>rack.multipart.tempfile_factory</tt>:: An object responding to #call with two arguments, the filename and content_type given for the multipart form field, and returning an IO-like object that responds to #<< and optionally #rewind. This factory will be used to instantiate the tempfile for each multipart form file upload field, rather than the default class of Tempfile.
|
253
|
+
if tempfile_factory = env[RACK_MULTIPART_TEMPFILE_FACTORY]
|
254
|
+
raise LintError, "rack.multipart.tempfile_factory must respond to #call" unless tempfile_factory.respond_to?(:call)
|
255
|
+
env[RACK_MULTIPART_TEMPFILE_FACTORY] = lambda do |filename, content_type|
|
256
|
+
io = tempfile_factory.call(filename, content_type)
|
257
|
+
raise LintError, "rack.multipart.tempfile_factory return value must respond to #<<" unless io.respond_to?(:<<)
|
258
|
+
io
|
259
|
+
end
|
260
|
+
end
|
261
|
+
|
262
|
+
## The server or the application can store their own data in the
|
263
|
+
## environment, too. The keys must contain at least one dot,
|
264
|
+
## and should be prefixed uniquely. The prefix <tt>rack.</tt>
|
265
|
+
## is reserved for use with the Rack core distribution and other
|
266
|
+
## accepted specifications and must not be used otherwise.
|
267
|
+
##
|
268
|
+
|
269
|
+
%w[REQUEST_METHOD SERVER_NAME QUERY_STRING SERVER_PROTOCOL
|
270
|
+
rack.input rack.errors].each { |header|
|
271
|
+
raise LintError, "env missing required key #{header}" unless env.include? header
|
272
|
+
}
|
273
|
+
|
274
|
+
## The <tt>SERVER_PORT</tt> must be an Integer if set.
|
275
|
+
server_port = env["SERVER_PORT"]
|
276
|
+
unless server_port.nil? || (Integer(server_port) rescue false)
|
277
|
+
raise LintError, "env[SERVER_PORT] is not an Integer"
|
278
|
+
end
|
279
|
+
|
280
|
+
## The <tt>SERVER_NAME</tt> must be a valid authority as defined by RFC7540.
|
281
|
+
unless (URI.parse("http://#{env[SERVER_NAME]}/") rescue false)
|
282
|
+
raise LintError, "#{env[SERVER_NAME]} must be a valid authority"
|
283
|
+
end
|
284
|
+
|
285
|
+
## The <tt>HTTP_HOST</tt> must be a valid authority as defined by RFC7540.
|
286
|
+
unless (URI.parse("http://#{env[HTTP_HOST]}/") rescue false)
|
287
|
+
raise LintError, "#{env[HTTP_HOST]} must be a valid authority"
|
288
|
+
end
|
289
|
+
|
290
|
+
## The <tt>SERVER_PROTOCOL</tt> must match the regexp <tt>HTTP/\d(\.\d)?</tt>.
|
291
|
+
server_protocol = env['SERVER_PROTOCOL']
|
292
|
+
unless %r{HTTP/\d(\.\d)?}.match?(server_protocol)
|
293
|
+
raise LintError, "env[SERVER_PROTOCOL] does not match HTTP/\\d(\\.\\d)?"
|
294
|
+
end
|
295
|
+
|
296
|
+
## If the <tt>HTTP_VERSION</tt> is present, it must equal the <tt>SERVER_PROTOCOL</tt>.
|
297
|
+
if env['HTTP_VERSION'] && env['HTTP_VERSION'] != server_protocol
|
298
|
+
raise LintError, "env[HTTP_VERSION] does not equal env[SERVER_PROTOCOL]"
|
299
|
+
end
|
300
|
+
|
301
|
+
## The environment must not contain the keys
|
302
|
+
## <tt>HTTP_CONTENT_TYPE</tt> or <tt>HTTP_CONTENT_LENGTH</tt>
|
303
|
+
## (use the versions without <tt>HTTP_</tt>).
|
304
|
+
%w[HTTP_CONTENT_TYPE HTTP_CONTENT_LENGTH].each { |header|
|
305
|
+
if env.include? header
|
306
|
+
raise LintError, "env contains #{header}, must use #{header[5..-1]}"
|
307
|
+
end
|
308
|
+
}
|
309
|
+
|
310
|
+
## The CGI keys (named without a period) must have String values.
|
311
|
+
## If the string values for CGI keys contain non-ASCII characters,
|
312
|
+
## they should use ASCII-8BIT encoding.
|
313
|
+
env.each { |key, value|
|
314
|
+
next if key.include? "." # Skip extensions
|
315
|
+
unless value.kind_of? String
|
316
|
+
raise LintError, "env variable #{key} has non-string value #{value.inspect}"
|
317
|
+
end
|
318
|
+
next if value.encoding == Encoding::ASCII_8BIT
|
319
|
+
unless value.b !~ /[\x80-\xff]/n
|
320
|
+
raise LintError, "env variable #{key} has value containing non-ASCII characters and has non-ASCII-8BIT encoding #{value.inspect} encoding: #{value.encoding}"
|
321
|
+
end
|
322
|
+
}
|
323
|
+
|
324
|
+
## There are the following restrictions:
|
325
|
+
|
326
|
+
## * <tt>rack.url_scheme</tt> must either be +http+ or +https+.
|
327
|
+
unless %w[http https].include?(env[RACK_URL_SCHEME])
|
328
|
+
raise LintError, "rack.url_scheme unknown: #{env[RACK_URL_SCHEME].inspect}"
|
329
|
+
end
|
330
|
+
|
331
|
+
## * There must be a valid input stream in <tt>rack.input</tt>.
|
332
|
+
check_input env[RACK_INPUT]
|
333
|
+
## * There must be a valid error stream in <tt>rack.errors</tt>.
|
334
|
+
check_error env[RACK_ERRORS]
|
335
|
+
## * There may be a valid hijack callback in <tt>rack.hijack</tt>
|
336
|
+
check_hijack env
|
337
|
+
|
338
|
+
## * The <tt>REQUEST_METHOD</tt> must be a valid token.
|
339
|
+
unless env[REQUEST_METHOD] =~ /\A[0-9A-Za-z!\#$%&'*+.^_`|~-]+\z/
|
340
|
+
raise LintError, "REQUEST_METHOD unknown: #{env[REQUEST_METHOD].dump}"
|
341
|
+
end
|
342
|
+
|
343
|
+
## * The <tt>SCRIPT_NAME</tt>, if non-empty, must start with <tt>/</tt>
|
344
|
+
if env.include?(SCRIPT_NAME) && env[SCRIPT_NAME] != "" && env[SCRIPT_NAME] !~ /\A\//
|
345
|
+
raise LintError, "SCRIPT_NAME must start with /"
|
346
|
+
end
|
347
|
+
## * The <tt>PATH_INFO</tt>, if non-empty, must start with <tt>/</tt>
|
348
|
+
if env.include?(PATH_INFO) && env[PATH_INFO] != "" && env[PATH_INFO] !~ /\A\//
|
349
|
+
raise LintError, "PATH_INFO must start with /"
|
350
|
+
end
|
351
|
+
## * The <tt>CONTENT_LENGTH</tt>, if given, must consist of digits only.
|
352
|
+
if env.include?("CONTENT_LENGTH") && env["CONTENT_LENGTH"] !~ /\A\d+\z/
|
353
|
+
raise LintError, "Invalid CONTENT_LENGTH: #{env["CONTENT_LENGTH"]}"
|
354
|
+
end
|
355
|
+
|
356
|
+
## * One of <tt>SCRIPT_NAME</tt> or <tt>PATH_INFO</tt> must be
|
357
|
+
## set. <tt>PATH_INFO</tt> should be <tt>/</tt> if
|
358
|
+
## <tt>SCRIPT_NAME</tt> is empty.
|
359
|
+
unless env[SCRIPT_NAME] || env[PATH_INFO]
|
360
|
+
raise LintError, "One of SCRIPT_NAME or PATH_INFO must be set (make PATH_INFO '/' if SCRIPT_NAME is empty)"
|
361
|
+
end
|
362
|
+
## <tt>SCRIPT_NAME</tt> never should be <tt>/</tt>, but instead be empty.
|
363
|
+
unless env[SCRIPT_NAME] != "/"
|
364
|
+
raise LintError, "SCRIPT_NAME cannot be '/', make it '' and PATH_INFO '/'"
|
365
|
+
end
|
366
|
+
|
367
|
+
## <tt>rack.response_finished</tt>:: An array of callables run by the server after the response has been
|
368
|
+
## processed. This would typically be invoked after sending the response to the client, but it could also be
|
369
|
+
## invoked if an error occurs while generating the response or sending the response; in that case, the error
|
370
|
+
## argument will be a subclass of +Exception+.
|
371
|
+
## The callables are invoked with +env, status, headers, error+ arguments and should not raise any
|
372
|
+
## exceptions. They should be invoked in reverse order of registration.
|
373
|
+
if callables = env[RACK_RESPONSE_FINISHED]
|
374
|
+
raise LintError, "rack.response_finished must be an array of callable objects" unless callables.is_a?(Array)
|
375
|
+
|
376
|
+
callables.each do |callable|
|
377
|
+
raise LintError, "rack.response_finished values must respond to call(env, status, headers, error)" unless callable.respond_to?(:call)
|
378
|
+
end
|
379
|
+
end
|
380
|
+
end
|
381
|
+
|
382
|
+
##
|
383
|
+
## === The Input Stream
|
384
|
+
##
|
385
|
+
## The input stream is an IO-like object which contains the raw HTTP
|
386
|
+
## POST data.
|
387
|
+
def check_input(input)
|
388
|
+
## When applicable, its external encoding must be "ASCII-8BIT" and it
|
389
|
+
## must be opened in binary mode, for Ruby 1.9 compatibility.
|
390
|
+
if input.respond_to?(:external_encoding) && input.external_encoding != Encoding::ASCII_8BIT
|
391
|
+
raise LintError, "rack.input #{input} does not have ASCII-8BIT as its external encoding"
|
392
|
+
end
|
393
|
+
if input.respond_to?(:binmode?) && !input.binmode?
|
394
|
+
raise LintError, "rack.input #{input} is not opened in binary mode"
|
395
|
+
end
|
396
|
+
|
397
|
+
## The input stream must respond to +gets+, +each+, and +read+.
|
398
|
+
[:gets, :each, :read].each { |method|
|
399
|
+
unless input.respond_to? method
|
400
|
+
raise LintError, "rack.input #{input} does not respond to ##{method}"
|
401
|
+
end
|
402
|
+
}
|
403
|
+
end
|
404
|
+
|
405
|
+
class InputWrapper
|
406
|
+
def initialize(input)
|
407
|
+
@input = input
|
408
|
+
end
|
409
|
+
|
410
|
+
## * +gets+ must be called without arguments and return a string,
|
411
|
+
## or +nil+ on EOF.
|
412
|
+
def gets(*args)
|
413
|
+
raise LintError, "rack.input#gets called with arguments" unless args.size == 0
|
414
|
+
v = @input.gets
|
415
|
+
unless v.nil? or v.kind_of? String
|
416
|
+
raise LintError, "rack.input#gets didn't return a String"
|
417
|
+
end
|
418
|
+
v
|
419
|
+
end
|
420
|
+
|
421
|
+
## * +read+ behaves like IO#read.
|
422
|
+
## Its signature is <tt>read([length, [buffer]])</tt>.
|
423
|
+
##
|
424
|
+
## If given, +length+ must be a non-negative Integer (>= 0) or +nil+,
|
425
|
+
## and +buffer+ must be a String and may not be nil.
|
426
|
+
##
|
427
|
+
## If +length+ is given and not nil, then this method reads at most
|
428
|
+
## +length+ bytes from the input stream.
|
429
|
+
##
|
430
|
+
## If +length+ is not given or nil, then this method reads
|
431
|
+
## all data until EOF.
|
432
|
+
##
|
433
|
+
## When EOF is reached, this method returns nil if +length+ is given
|
434
|
+
## and not nil, or "" if +length+ is not given or is nil.
|
435
|
+
##
|
436
|
+
## If +buffer+ is given, then the read data will be placed
|
437
|
+
## into +buffer+ instead of a newly created String object.
|
438
|
+
def read(*args)
|
439
|
+
unless args.size <= 2
|
440
|
+
raise LintError, "rack.input#read called with too many arguments"
|
441
|
+
end
|
442
|
+
if args.size >= 1
|
443
|
+
unless args.first.kind_of?(Integer) || args.first.nil?
|
444
|
+
raise LintError, "rack.input#read called with non-integer and non-nil length"
|
445
|
+
end
|
446
|
+
unless args.first.nil? || args.first >= 0
|
447
|
+
raise LintError, "rack.input#read called with a negative length"
|
448
|
+
end
|
449
|
+
end
|
450
|
+
if args.size >= 2
|
451
|
+
unless args[1].kind_of?(String)
|
452
|
+
raise LintError, "rack.input#read called with non-String buffer"
|
453
|
+
end
|
454
|
+
end
|
455
|
+
|
456
|
+
v = @input.read(*args)
|
457
|
+
|
458
|
+
unless v.nil? or v.kind_of? String
|
459
|
+
raise LintError, "rack.input#read didn't return nil or a String"
|
460
|
+
end
|
461
|
+
if args[0].nil?
|
462
|
+
unless !v.nil?
|
463
|
+
raise LintError, "rack.input#read(nil) returned nil on EOF"
|
464
|
+
end
|
465
|
+
end
|
466
|
+
|
467
|
+
v
|
468
|
+
end
|
469
|
+
|
470
|
+
## * +each+ must be called without arguments and only yield Strings.
|
471
|
+
def each(*args)
|
472
|
+
raise LintError, "rack.input#each called with arguments" unless args.size == 0
|
473
|
+
@input.each { |line|
|
474
|
+
unless line.kind_of? String
|
475
|
+
raise LintError, "rack.input#each didn't yield a String"
|
476
|
+
end
|
477
|
+
yield line
|
478
|
+
}
|
479
|
+
end
|
480
|
+
|
481
|
+
## * +close+ can be called on the input stream to indicate that the
|
482
|
+
## any remaining input is not needed.
|
483
|
+
def close(*args)
|
484
|
+
@input.close(*args)
|
485
|
+
end
|
486
|
+
end
|
487
|
+
|
488
|
+
##
|
489
|
+
## === The Error Stream
|
490
|
+
##
|
491
|
+
def check_error(error)
|
492
|
+
## The error stream must respond to +puts+, +write+ and +flush+.
|
493
|
+
[:puts, :write, :flush].each { |method|
|
494
|
+
unless error.respond_to? method
|
495
|
+
raise LintError, "rack.error #{error} does not respond to ##{method}"
|
496
|
+
end
|
497
|
+
}
|
498
|
+
end
|
499
|
+
|
500
|
+
class ErrorWrapper
|
501
|
+
def initialize(error)
|
502
|
+
@error = error
|
503
|
+
end
|
504
|
+
|
505
|
+
## * +puts+ must be called with a single argument that responds to +to_s+.
|
506
|
+
def puts(str)
|
507
|
+
@error.puts str
|
508
|
+
end
|
509
|
+
|
510
|
+
## * +write+ must be called with a single argument that is a String.
|
511
|
+
def write(str)
|
512
|
+
raise LintError, "rack.errors#write not called with a String" unless str.kind_of? String
|
513
|
+
@error.write str
|
514
|
+
end
|
515
|
+
|
516
|
+
## * +flush+ must be called without arguments and must be called
|
517
|
+
## in order to make the error appear for sure.
|
518
|
+
def flush
|
519
|
+
@error.flush
|
520
|
+
end
|
521
|
+
|
522
|
+
## * +close+ must never be called on the error stream.
|
523
|
+
def close(*args)
|
524
|
+
raise LintError, "rack.errors#close must not be called"
|
525
|
+
end
|
526
|
+
end
|
527
|
+
|
528
|
+
##
|
529
|
+
## === Hijacking
|
530
|
+
##
|
531
|
+
## The hijacking interfaces provides a means for an application to take
|
532
|
+
## control of the HTTP connection. There are two distinct hijack
|
533
|
+
## interfaces: full hijacking where the application takes over the raw
|
534
|
+
## connection, and partial hijacking where the application takes over
|
535
|
+
## just the response body stream. In both cases, the application is
|
536
|
+
## responsible for closing the hijacked stream.
|
537
|
+
##
|
538
|
+
## Full hijacking only works with HTTP/1. Partial hijacking is functionally
|
539
|
+
## equivalent to streaming bodies, and is still optionally supported for
|
540
|
+
## backwards compatibility with older Rack versions.
|
541
|
+
##
|
542
|
+
## ==== Full Hijack
|
543
|
+
##
|
544
|
+
## Full hijack is used to completely take over an HTTP/1 connection. It
|
545
|
+
## occurs before any headers are written and causes the request to
|
546
|
+
## ignores any response generated by the application.
|
547
|
+
##
|
548
|
+
## It is intended to be used when applications need access to raw HTTP/1
|
549
|
+
## connection.
|
550
|
+
##
|
551
|
+
def check_hijack(env)
|
552
|
+
## If +rack.hijack+ is present in +env+, it must respond to +call+
|
553
|
+
if original_hijack = env[RACK_HIJACK]
|
554
|
+
raise LintError, "rack.hijack must respond to call" unless original_hijack.respond_to?(:call)
|
555
|
+
|
556
|
+
env[RACK_HIJACK] = proc do
|
557
|
+
io = original_hijack.call
|
558
|
+
|
559
|
+
## and return an +IO+ instance which can be used to read and write
|
560
|
+
## to the underlying connection using HTTP/1 semantics and
|
561
|
+
## formatting.
|
562
|
+
raise LintError, "rack.hijack must return an IO instance" unless io.is_a?(IO)
|
563
|
+
|
564
|
+
io
|
565
|
+
end
|
566
|
+
end
|
567
|
+
end
|
568
|
+
|
569
|
+
##
|
570
|
+
## ==== Partial Hijack
|
571
|
+
##
|
572
|
+
## Partial hijack is used for bi-directional streaming of the request and
|
573
|
+
## response body. It occurs after the status and headers are written by
|
574
|
+
## the server and causes the server to ignore the Body of the response.
|
575
|
+
##
|
576
|
+
## It is intended to be used when applications need bi-directional
|
577
|
+
## streaming.
|
578
|
+
##
|
579
|
+
def check_hijack_response(headers, env)
|
580
|
+
## If +rack.hijack?+ is present in +env+ and truthy,
|
581
|
+
if env[RACK_IS_HIJACK]
|
582
|
+
## an application may set the special response header +rack.hijack+
|
583
|
+
if original_hijack = headers[RACK_HIJACK]
|
584
|
+
## to an object that responds to +call+,
|
585
|
+
unless original_hijack.respond_to?(:call)
|
586
|
+
raise LintError, 'rack.hijack header must respond to #call'
|
587
|
+
end
|
588
|
+
## accepting a +stream+ argument.
|
589
|
+
return proc do |io|
|
590
|
+
original_hijack.call StreamWrapper.new(io)
|
591
|
+
end
|
592
|
+
end
|
593
|
+
##
|
594
|
+
## After the response status and headers have been sent, this hijack
|
595
|
+
## callback will be invoked with a +stream+ argument which follows the
|
596
|
+
## same interface as outlined in "Streaming Body". Servers must
|
597
|
+
## ignore the +body+ part of the response tuple when the
|
598
|
+
## +rack.hijack+ response header is present. Using an empty +Array+
|
599
|
+
## instance is recommended.
|
600
|
+
else
|
601
|
+
##
|
602
|
+
## The special response header +rack.hijack+ must only be set
|
603
|
+
## if the request +env+ has a truthy +rack.hijack?+.
|
604
|
+
if headers.key?(RACK_HIJACK)
|
605
|
+
raise LintError, 'rack.hijack header must not be present if server does not support hijacking'
|
606
|
+
end
|
607
|
+
end
|
608
|
+
|
609
|
+
nil
|
610
|
+
end
|
611
|
+
|
612
|
+
## == The Response
|
613
|
+
##
|
614
|
+
## === The Status
|
615
|
+
##
|
616
|
+
def check_status(status)
|
617
|
+
## This is an HTTP status. It must be an Integer greater than or equal to
|
618
|
+
## 100.
|
619
|
+
unless status.is_a?(Integer) && status >= 100
|
620
|
+
raise LintError, "Status must be an Integer >=100"
|
621
|
+
end
|
622
|
+
end
|
623
|
+
|
624
|
+
##
|
625
|
+
## === The Headers
|
626
|
+
##
|
627
|
+
def check_headers(headers)
|
628
|
+
## The headers must be a unfrozen Hash.
|
629
|
+
unless headers.kind_of?(Hash)
|
630
|
+
raise LintError, "headers object should be a hash, but isn't (got #{headers.class} as headers)"
|
631
|
+
end
|
632
|
+
|
633
|
+
if headers.frozen?
|
634
|
+
raise LintError, "headers object should not be frozen, but is"
|
635
|
+
end
|
636
|
+
|
637
|
+
headers.each do |key, value|
|
638
|
+
## The header keys must be Strings.
|
639
|
+
unless key.kind_of? String
|
640
|
+
raise LintError, "header key must be a string, was #{key.class}"
|
641
|
+
end
|
642
|
+
|
643
|
+
## Special headers starting "rack." are for communicating with the
|
644
|
+
## server, and must not be sent back to the client.
|
645
|
+
next if key.start_with?("rack.")
|
646
|
+
|
647
|
+
## The header must not contain a +Status+ key.
|
648
|
+
raise LintError, "header must not contain status" if key == "status"
|
649
|
+
## Header keys must conform to RFC7230 token specification, i.e. cannot
|
650
|
+
## contain non-printable ASCII, DQUOTE or "(),/:;<=>?@[\]{}".
|
651
|
+
raise LintError, "invalid header name: #{key}" if key =~ /[\(\),\/:;<=>\?@\[\\\]{}[:cntrl:]]/
|
652
|
+
## Header keys must not contain uppercase ASCII characters (A-Z).
|
653
|
+
raise LintError, "uppercase character in header name: #{key}" if key =~ /[A-Z]/
|
654
|
+
|
655
|
+
## Header values must be either a String instance,
|
656
|
+
if value.kind_of?(String)
|
657
|
+
check_header_value(key, value)
|
658
|
+
elsif value.kind_of?(Array)
|
659
|
+
## or an Array of String instances,
|
660
|
+
value.each{|value| check_header_value(key, value)}
|
661
|
+
else
|
662
|
+
raise LintError, "a header value must be a String or Array of Strings, but the value of '#{key}' is a #{value.class}"
|
663
|
+
end
|
664
|
+
end
|
665
|
+
end
|
666
|
+
|
667
|
+
def check_header_value(key, value)
|
668
|
+
## such that each String instance must not contain characters below 037.
|
669
|
+
if value =~ /[\000-\037]/
|
670
|
+
raise LintError, "invalid header value #{key}: #{value.inspect}"
|
671
|
+
end
|
672
|
+
end
|
673
|
+
|
674
|
+
##
|
675
|
+
## === The content-type
|
676
|
+
##
|
677
|
+
def check_content_type(status, headers)
|
678
|
+
headers.each { |key, value|
|
679
|
+
## There must not be a <tt>content-type</tt> header key when the +Status+ is 1xx,
|
680
|
+
## 204, or 304.
|
681
|
+
if key == "content-type"
|
682
|
+
if Rack::Utils::STATUS_WITH_NO_ENTITY_BODY.key? status.to_i
|
683
|
+
raise LintError, "content-type header found in #{status} response, not allowed"
|
684
|
+
end
|
685
|
+
return
|
686
|
+
end
|
687
|
+
}
|
688
|
+
end
|
689
|
+
|
690
|
+
##
|
691
|
+
## === The content-length
|
692
|
+
##
|
693
|
+
def check_content_length(status, headers)
|
694
|
+
headers.each { |key, value|
|
695
|
+
if key == 'content-length'
|
696
|
+
## There must not be a <tt>content-length</tt> header key when the
|
697
|
+
## +Status+ is 1xx, 204, or 304.
|
698
|
+
if Rack::Utils::STATUS_WITH_NO_ENTITY_BODY.key? status.to_i
|
699
|
+
raise LintError, "content-length header found in #{status} response, not allowed"
|
700
|
+
end
|
701
|
+
@content_length = value
|
702
|
+
end
|
703
|
+
}
|
704
|
+
end
|
705
|
+
|
706
|
+
def verify_content_length(size)
|
707
|
+
if @head_request
|
708
|
+
unless size == 0
|
709
|
+
raise LintError, "Response body was given for HEAD request, but should be empty"
|
710
|
+
end
|
711
|
+
elsif @content_length
|
712
|
+
unless @content_length == size.to_s
|
713
|
+
raise LintError, "content-length header was #{@content_length}, but should be #{size}"
|
714
|
+
end
|
715
|
+
end
|
716
|
+
end
|
717
|
+
|
718
|
+
##
|
719
|
+
## === The Body
|
720
|
+
##
|
721
|
+
## The Body is typically an +Array+ of +String+ instances, an enumerable
|
722
|
+
## that yields +String+ instances, a +Proc+ instance, or a File-like
|
723
|
+
## object.
|
724
|
+
##
|
725
|
+
## The Body must respond to +each+ or +call+. It may optionally respond
|
726
|
+
## to +to_path+ or +to_ary+. A Body that responds to +each+ is considered
|
727
|
+
## to be an Enumerable Body. A Body that responds to +call+ is considered
|
728
|
+
## to be a Streaming Body.
|
729
|
+
##
|
730
|
+
## A Body that responds to both +each+ and +call+ must be treated as an
|
731
|
+
## Enumerable Body, not a Streaming Body. If it responds to +each+, you
|
732
|
+
## must call +each+ and not +call+. If the Body doesn't respond to
|
733
|
+
## +each+, then you can assume it responds to +call+.
|
734
|
+
##
|
735
|
+
## The Body must either be consumed or returned. The Body is consumed by
|
736
|
+
## optionally calling either +each+ or +call+.
|
737
|
+
## Then, if the Body responds to +close+, it must be called to release
|
738
|
+
## any resources associated with the generation of the body.
|
739
|
+
## In other words, +close+ must always be called at least once; typically
|
740
|
+
## after the web server has sent the response to the client, but also in
|
741
|
+
## cases where the Rack application makes internal/virtual requests and
|
742
|
+
## discards the response.
|
743
|
+
##
|
744
|
+
def close
|
745
|
+
##
|
746
|
+
## After calling +close+, the Body is considered closed and should not
|
747
|
+
## be consumed again.
|
748
|
+
@closed = true
|
749
|
+
|
750
|
+
## If the original Body is replaced by a new Body, the new Body must
|
751
|
+
## also consume the original Body by calling +close+ if possible.
|
752
|
+
@body.close if @body.respond_to?(:close)
|
753
|
+
|
754
|
+
index = @lint.index(self)
|
755
|
+
unless @env['rack.lint'][0..index].all? {|lint| lint.instance_variable_get(:@closed)}
|
756
|
+
raise LintError, "Body has not been closed"
|
757
|
+
end
|
758
|
+
end
|
759
|
+
|
760
|
+
def verify_to_path
|
761
|
+
##
|
762
|
+
## If the Body responds to +to_path+, it must return a +String+
|
763
|
+
## path for the local file system whose contents are identical
|
764
|
+
## to that produced by calling +each+; this may be used by the
|
765
|
+
## server as an alternative, possibly more efficient way to
|
766
|
+
## transport the response. The +to_path+ method does not consume
|
767
|
+
## the body.
|
768
|
+
if @body.respond_to?(:to_path)
|
769
|
+
unless ::File.exist? @body.to_path
|
770
|
+
raise LintError, "The file identified by body.to_path does not exist"
|
771
|
+
end
|
772
|
+
end
|
773
|
+
end
|
774
|
+
|
775
|
+
##
|
776
|
+
## ==== Enumerable Body
|
777
|
+
##
|
778
|
+
def each
|
779
|
+
## The Enumerable Body must respond to +each+.
|
780
|
+
raise LintError, "Enumerable Body must respond to each" unless @body.respond_to?(:each)
|
781
|
+
|
782
|
+
## It must only be called once.
|
783
|
+
raise LintError, "Response body must only be invoked once (#{@invoked})" unless @invoked.nil?
|
784
|
+
|
785
|
+
## It must not be called after being closed.
|
786
|
+
raise LintError, "Response body is already closed" if @closed
|
787
|
+
|
788
|
+
@invoked = :each
|
789
|
+
|
790
|
+
@body.each do |chunk|
|
791
|
+
## and must only yield String values.
|
792
|
+
unless chunk.kind_of? String
|
793
|
+
raise LintError, "Body yielded non-string value #{chunk.inspect}"
|
794
|
+
end
|
795
|
+
|
796
|
+
##
|
797
|
+
## The Body itself should not be an instance of String, as this will
|
798
|
+
## break in Ruby 1.9.
|
799
|
+
##
|
800
|
+
## Middleware must not call +each+ directly on the Body.
|
801
|
+
## Instead, middleware can return a new Body that calls +each+ on the
|
802
|
+
## original Body, yielding at least once per iteration.
|
803
|
+
if @lint[0] == self
|
804
|
+
@env['rack.lint.body_iteration'] += 1
|
805
|
+
else
|
806
|
+
if (@env['rack.lint.body_iteration'] -= 1) > 0
|
807
|
+
raise LintError, "New body must yield at least once per iteration of old body"
|
808
|
+
end
|
809
|
+
end
|
810
|
+
|
811
|
+
@size += chunk.bytesize
|
812
|
+
yield chunk
|
813
|
+
end
|
814
|
+
|
815
|
+
verify_content_length(@size)
|
816
|
+
|
817
|
+
verify_to_path
|
818
|
+
end
|
819
|
+
|
820
|
+
BODY_METHODS = {to_ary: true, each: true, call: true, to_path: true}
|
821
|
+
|
822
|
+
def to_path
|
823
|
+
@body.to_path
|
824
|
+
end
|
825
|
+
|
826
|
+
def respond_to?(name, *)
|
827
|
+
if BODY_METHODS.key?(name)
|
828
|
+
@body.respond_to?(name)
|
829
|
+
else
|
830
|
+
super
|
831
|
+
end
|
832
|
+
end
|
833
|
+
|
834
|
+
##
|
835
|
+
## If the Body responds to +to_ary+, it must return an +Array+ whose
|
836
|
+
## contents are identical to that produced by calling +each+.
|
837
|
+
## Middleware may call +to_ary+ directly on the Body and return a new
|
838
|
+
## Body in its place. In other words, middleware can only process the
|
839
|
+
## Body directly if it responds to +to_ary+. If the Body responds to both
|
840
|
+
## +to_ary+ and +close+, its implementation of +to_ary+ must call
|
841
|
+
## +close+.
|
842
|
+
def to_ary
|
843
|
+
@body.to_ary.tap do |content|
|
844
|
+
unless content == @body.enum_for.to_a
|
845
|
+
raise LintError, "#to_ary not identical to contents produced by calling #each"
|
846
|
+
end
|
847
|
+
end
|
848
|
+
ensure
|
849
|
+
close
|
850
|
+
end
|
851
|
+
|
852
|
+
##
|
853
|
+
## ==== Streaming Body
|
854
|
+
##
|
855
|
+
def call(stream)
|
856
|
+
## The Streaming Body must respond to +call+.
|
857
|
+
raise LintError, "Streaming Body must respond to call" unless @body.respond_to?(:call)
|
858
|
+
|
859
|
+
## It must only be called once.
|
860
|
+
raise LintError, "Response body must only be invoked once (#{@invoked})" unless @invoked.nil?
|
861
|
+
|
862
|
+
## It must not be called after being closed.
|
863
|
+
raise LintError, "Response body is already closed" if @closed
|
864
|
+
|
865
|
+
@invoked = :call
|
866
|
+
|
867
|
+
## It takes a +stream+ argument.
|
868
|
+
##
|
869
|
+
## The +stream+ argument must implement:
|
870
|
+
## <tt>read, write, <<, flush, close, close_read, close_write, closed?</tt>
|
871
|
+
##
|
872
|
+
@body.call(StreamWrapper.new(stream))
|
873
|
+
end
|
874
|
+
|
875
|
+
class StreamWrapper
|
876
|
+
extend Forwardable
|
877
|
+
|
878
|
+
## The semantics of these IO methods must be a best effort match to
|
879
|
+
## those of a normal Ruby IO or Socket object, using standard arguments
|
880
|
+
## and raising standard exceptions. Servers are encouraged to simply
|
881
|
+
## pass on real IO objects, although it is recognized that this approach
|
882
|
+
## is not directly compatible with HTTP/2.
|
883
|
+
REQUIRED_METHODS = [
|
884
|
+
:read, :write, :<<, :flush, :close,
|
885
|
+
:close_read, :close_write, :closed?
|
886
|
+
]
|
887
|
+
|
888
|
+
def_delegators :@stream, *REQUIRED_METHODS
|
889
|
+
|
890
|
+
def initialize(stream)
|
891
|
+
@stream = stream
|
892
|
+
|
893
|
+
REQUIRED_METHODS.each do |method_name|
|
894
|
+
raise LintError, "Stream must respond to #{method_name}" unless stream.respond_to?(method_name)
|
895
|
+
end
|
896
|
+
end
|
897
|
+
end
|
898
|
+
|
899
|
+
# :startdoc:
|
900
|
+
end
|
901
|
+
end
|
902
|
+
end
|
903
|
+
|
904
|
+
##
|
905
|
+
## == Thanks
|
906
|
+
## Some parts of this specification are adopted from {PEP 333 – Python Web Server Gateway Interface v1.0}[https://peps.python.org/pep-0333/]
|
907
|
+
## I'd like to thank everyone involved in that effort.
|