path_for Rails helper

Make any kind of params to a path

  # :controller=>'xxx' --> /xxx
  # /xxx -> /xxx
  # http://adasd.com/xxx -> /xxx
  def path_for(path)
    if path.is_a? Hash
      url_for(path.merge(:only_path=>true))
    else
      URI.parse(path).path
    end
  end

2 thoughts on “path_for Rails helper

Leave a comment