The Rails Chronicles – The Tales of CRUD – Part 1

A developer using Rails will likely say that they have created a Post resource. In most cases it is meant that a Posts model, a Posts controller with a set of CRUD actions, and some named routes pertaining to that controller (courtesy of resources :posts) were created. Lets start with resources; resources can be defined as the RESTful syntactic sugar of routes. […]