Advertisement
Guest User

Untitled

a guest
Feb 27th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. link_to "Comment wall", profile_path(@profile, :anchor => "wall")
  2. // => <a href="/profiles/1#wall">Comment wall</a>
  3.  
  4.  
  5. link_to "Ruby on Rails search", :controller => "searches", :query => "ruby on rails"
  6. // => <a href="/searches?query=ruby+on+rails">Ruby on Rails search</a>
  7.  
  8.  
  9. link_to "Nonsense search", searches_path(:foo => "bar", :baz => "quux")
  10. // => <a href="/searches?foo=bar&baz=quux">Nonsense search</a>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement