Skip to content

Instantly share code, notes, and snippets.

@rbarazi
Created March 2, 2010 20:54
Show Gist options
  • Save rbarazi/319933 to your computer and use it in GitHub Desktop.
Save rbarazi/319933 to your computer and use it in GitHub Desktop.
[Beginning Rails 3] Listing 2-4. The config/routes.rb file
Hello::Application.routes.draw do |map|
match ':controller(/:action(/:id(.:format)))'
end
@fongfan999
Copy link

fongfan999 commented Jul 14, 2016

Hi @ansaanch, If you're using Rails 4, you can do the following:

get 'salutation/hello'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment