RESTful with RoR
Greetings Mate!!! In this article, you'll learn about REST and how Rails implements it. REST is a tricky subject in beginner Ruby on Rails training. On one hand, it requires learning some advanced web concepts and new techniques at a time when you're still getting your footing in the basics of MVC and CRUD. But on the other hand, REST has become such a core part of developing in Rails that you must learn it. So hang with article as you go into some deeper waters. REST is short for Representational State Transfer , and REST is a design concept which says that our application should not focus on performing procedures, but instead on performing state transformations upon resources. It's not easy to see how that's different from what we're already doing because the Rails MVC pattern already encourages us to break up our code by model and c...