class RuboCop::Cop::Layout::FirstArgumentIndentation
def column_of(range)
Returns the column of the given range. For single line ranges, this
def column_of(range) source = range.source.strip if source.include?("\n") previous_code_line(range.line + source.count("\n") + 1) =~ /\S/ else display_column(range) end end