Here’s another little problem I was just hitting and the solution in case it happens to help someone else out there.
If you’re trying to use a plugin (in this case the restful_authentication plugin) and you’re hitting an error like this when you use ./script/generate:
“Couldn’t find ‘authenticated’ generator”
Check to make sure that you have actually installed [...]
Continue reading about Fix for "Couldn’t find ‘authenticated’ generator"
Today I decided to get my head around REST and, more specifically, whether and how I should use it in my Rails development projects.
REST (or REpresentational State Transfer - see Wikipedia), is all about resources. As I understand it, in a perfectly RESTful application, every object is resource with a unique identifier (in this case, [...]