Notifications
You’re not receiving notifications from this thread.
A Look Into Routing Discussion

railscasts.com was first. you are like the google+ thing. which is cool for you :p. keep up with the good videos.

For users books you can update your route to `resources :books, only: [:show, :index]`. So that, Rails only have to generate those routes and you can explain `only` and `except` options too.
Greate cast, thank you ! What is greate as well is that you touched a little bit the devise settings to apply. Really helpful !
I hope gorails will replace rails cast. rails cast tutorials are almost useless for me because most of them are outdated.
Sure some of RailsCast's content may be outdated but the fundamentals are still there, lots of cool tricks in their pro series, learned a ton from their site just on caching alone.
Whats a good rule of thumb for choosing the route verbs in this set up, i don't get why you used what you use there.
Liked hearing the meows in the background :)
when putting auth checks on route, is the auth check on the controller then doubling the functionality?
is the modules
directive in the route still necessary, or could you just scope :admin
the whole route block?