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.
Yes! I forgot to mention that. Thanks for sharing. :)
Greate cast, thank you ! What is greate as well is that you touched a little bit the devise settings to apply. Really helpful !
Nice work, routes is much clearer for me now!
Which bash theme do you use?
It's a Monokai theme for ZSH. You can download it here https://github.com/excid3/d...
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 :)
He loves running around and being noise when I'm trying to record. 😺
Came here to say this. :) 🐱
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?