Skip to content

Instantly share code, notes, and snippets.

@svs
Created August 27, 2013 14:51
Show Gist options
  • Save svs/6354584 to your computer and use it in GitHub Desktop.
Save svs/6354584 to your computer and use it in GitHub Desktop.
actiondispatch
@routes ||= ActionDispatch::Routing::RouteSet.new.tap do |r|
r.draw do
resources :games, :only => [:index, :create, :show, :update]
end
end
@routes.recognize_path("/games", {:method => 'GET'}) # => {:action => "index", :controller => "games"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment