Sha256: 2c19c58bf24fd996cc02d84e2e443955adc8b41ddab030bd4b64e386280e5627
Contents?: true
Size: 976 Bytes
Versions: 178
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
178 entries across 173 versions & 17 rubygems