class ActionDispatch::Journey::Visitors::FormatBuilder

def visit_SYMBOL(n)

def visit_SYMBOL(n)
  symbol = n.to_sym
  if symbol == :controller
    [Journey::Format.required_path(symbol)]
  else
    [Journey::Format.required_segment(symbol)]
  end
end