P is for Programming

Keeping your routes RESTful

February 1, 2012

A while ago I blogged about RESTful routing in Rails. While Rails does help us in getting started with RESTful routing, it’s still very easy to lose your way and make a real mess of your routes. To illustrate this, I’m going to recreate a problem I recently came across when working on RapidFTR – [...]

Tags: Rails, Routing

RESTful Routing in Rails 3

January 9, 2012

This post deals with generating RESTful routes in Rails 3. If you want to look at the basics of routing (which also helps in understanding RESTful routes), take a look at Routing in Rails 3. RESTful routes is quite a large topic and it’s quite possible to write quite a few posts (or even a [...]

Tags: Rails, Routing

Routing in Rails 3

January 5, 2012

This post deals with the basics of routing in Rails 3. If you want to look at the more advanced RESTful routing, take a look at RESTful Routing in Rails 3. Routing has been one of the topics in Rails that I have always found rather confusing. My confusion was probably not helped by the [...]

Tags: Rails, Routing