class RuboCop::Cop::Rails::FilePath

def dstr_separated_by_colon?(node)

def dstr_separated_by_colon?(node)
  node.children[1..].any? do |child|
    child.str_type? && child.source.start_with?(':')
  end
end