module ActionDispatch::Http::URL

def url_for(options)

def url_for(options)
  if options[:only_path]
    path_for options
  else
    full_url_for options
  end
end