class RuboCop::Cop::Lint::StringConversionInInterpolation
This cop checks for string conversion in string interpolation, which is redundant.
@example
# bad "result is #{something.to_s}"
@example
# good "result is #{something}"
Constants
- MSG_DEFAULT
- MSG_SELF
Public Instance Methods
autocorrect(node)
click to toggle source
# File lib/rubocop/cop/lint/string_conversion_in_interpolation.rb, line 37 def autocorrect(node) lambda do |corrector| receiver = node.receiver corrector.replace( node.source_range, if receiver receiver.source else 'self' end ) end end
on_dstr(node)
click to toggle source
# File lib/rubocop/cop/lint/string_conversion_in_interpolation.rb, line 27 def on_dstr(node) node.each_child_node(:begin) do |begin_node| final_node = begin_node.children.last next unless to_s_without_args?(final_node) add_offense(final_node, location: :selector) end end
Private Instance Methods
message(node)
click to toggle source
# File lib/rubocop/cop/lint/string_conversion_in_interpolation.rb, line 53 def message(node) node.receiver ? MSG_DEFAULT : MSG_SELF end