Re: [Rails-core] Rails 3 : basic routes

2010-02-16 Thread Trek Glowacki
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

Re: [Rails-core] Rails 3 : basic routes

2010-02-16 Thread Thomas R. Koll
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

[Rails-core] Rails 3 : basic routes

2010-02-15 Thread ahe
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