Jordan Brough

355
Reputation
163 views

Registered User

Name Jordan Brough
Member for 10 months
Seen 2 days ago
Website
Location US
Age
More info about me on my Jordan Brough blog.
Nov
23
comment Ruby 1.9.1-p234, Passenger 2.2.5, Rails 2.3-stable closed stream on POST request
worked perfect, thanks
Nov
10
answered Rails after_save callback to create an associated model based on column_changed?
Jun
30
comment Creating routes with an optional path prefix
Here's another option I ran across today, haven't looked into it (routing-filter is working great) but might be of interest to others: github.com/raul/translate_routes
Jun
29
comment Creating routes with an optional path prefix
Thanks for the tip, this worked great for some translation/localization/internationalization work I'm doing. FYI, you don't have to add that file to your library -- the 'locale' filter is already included in the plugin. All you should have to do is: 1. Install the plugin. 2. Add map.filter 'locale' to your routes.rb. After that it just starts working! Nice. I also added RoutingFilter::Locale.include_default_locale = false to my environment.rb to avoid /en being in my links. Works great, I hope Sven's plugin gets pulled into the Rails I18n codebase.