Sha256: 2c19c58bf24fd996cc02d84e2e443955adc8b41ddab030bd4b64e386280e5627

Contents?: true

Size: 976 Bytes

Versions: 189

Compression:

Stored size: 976 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  class ConfigObsoletion
    # Encapsulation of a ConfigObsoletion rule for changing a parameter
    # @api private
    class ChangedParameter < ParameterRule
      BASE_MESSAGE = 'obsolete parameter `%<parameter>s` (for `%<cop>s`) found in %<path>s'

      def message
        base = format(BASE_MESSAGE, parameter: parameter, cop: cop, path: smart_loaded_path)

        if alternative
          "#{base}\n`#{parameter}` has been renamed to `#{alternative.chomp}`."
        elsif alternatives
          "#{base}\n`#{parameter}` has been renamed to #{to_sentence(alternatives.map do |item|
                                                                       "`#{item}`"
                                                                     end,
                                                                     connector: 'and/or')}."
        else
          "#{base}\n#{reason.chomp}"
        end
      end
    end
  end
end

Version data entries

189 entries across 184 versions & 19 rubygems

Version Path
study_line-0.2.2 vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/config_obsoletion/changed_parameter.rb
rubocop-1.60.1 lib/rubocop/config_obsoletion/changed_parameter.rb
study_line-0.2.1 vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/config_obsoletion/changed_parameter.rb
study_line-0.2.0 vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.0/lib/rubocop/config_obsoletion/changed_parameter.rb
rubocop-1.60.0 lib/rubocop/config_obsoletion/changed_parameter.rb
harbr-0.2.10 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_parameter.rb
harbr-0.2.9 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_parameter.rb
harbr-0.2.8 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_parameter.rb
harbr-0.2.7 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_parameter.rb
harbr-0.2.6 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_parameter.rb
harbr-0.2.5 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_parameter.rb
harbr-0.2.4 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_parameter.rb
harbr-0.2.3 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_parameter.rb
harbr-0.2.2 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_parameter.rb
harbr-0.2.1 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_parameter.rb
harbr-0.2.0 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_parameter.rb
harbr-0.1.99 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_parameter.rb
harbr-0.1.98 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_parameter.rb
harbr-0.1.97 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_parameter.rb
harbr-0.1.96 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/config_obsoletion/changed_parameter.rb