Skip to content

Instantly share code, notes, and snippets.

@marcdel
Created March 24, 2013 23:54
Show Gist options
  • Save marcdel/5234132 to your computer and use it in GitHub Desktop.
Save marcdel/5234132 to your computer and use it in GitHub Desktop.
Two new ways to write routes in rails 4.
post '/home', to: 'home#index'
get '/home', to: 'home#index'
match '/home', to: 'home#index', via: :post
match '/home', to: 'home#index', via: :all
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment