Showing posts with label Rails Dynamic Routes. Show all posts
Showing posts with label Rails Dynamic Routes. Show all posts

Wednesday, June 3, 2009

New release of RDR

As came new rails 2.3 with more n more new stuff and making your app more DRY ( Do not Repeat Yourself) I have gone ahead and released new RDR Rails Dynamic Routes for rails 2.3.
The new release RDR2_3_2 is implemented in Rails 2.3.2 and compatible with Rails 2.2.x and above. I made some changes in new release like create actions with web-service support. for this I have used "respond_to" feature of Action Controller which determines the desired response format(html/xml) from the HTTP Accept header submitted by the client.

Hopefully you will like it..

Friday, May 29, 2009

RDR : Rails Dynamic Routes

While working on a CMS project we came across with requirement to build SEF urls dynamically in rails. rails have out-of-the-box support for SEF urls having routes.rb.
But what if I need to add new SEF urls without restarting server.. dynamically.
This need gave birth to RDR Rails Dynamic Routes. This is pretty simple utility that I have share on rubyforge. This will enable you to define customised(user friendly) url mapping for your selected controller/action making rails' routes.rb dynamic. No need to have server restart new url mapping is loaded dynamically. No additional dependency of any gems. You can also keep track of new updates on Rubyforge

Enjoy!!