I've been using Rails to teach web application development at the
University level since 2005. The very first thing we do in the section
about routing is entirely zero out the routes.rb file to be an empty
routing block.
This comes from several semesters of working with default routes
available an
Am 15.02.2010 um 23:54 schrieb ahe:
>
> When you generate a new Rails 3 project, "basic" routes are disabled
> by default because this line is commented out :
> # match ':controller(/:action(/:id(.:format)))'
>
> Is it really necessary?
> What about people learning Rails who are not familiar wit
Hi,
When you generate a new Rails 3 project, "basic" routes are disabled
by default because this line is commented out :
# match ':controller(/:action(/:id(.:format)))'
Is it really necessary?
What about people learning Rails who are not familiar with REST?
It was so easy to teach beginners : ju