#rails 3
3 posts tagged rails 3. Clear filter
-
Rails 3 Config Auto Load Paths in Application.rb
In Rails 3 files in lib/ are no longer loaded by default. It's a snap to auto load these classes by adding the following line to config/application.rb This is commented out around line 16. Either...
-
Rails 3 disable_with Does Not Work with Ajax Remote Form_for
It appears that the :disable\with option on the submit\tag form helper method does not behave as expected with remote forms. I'm not sure if this is a bug or not. But the fix is pretty straight...
-
Renaming Routes in Rails 3 with :As and :Controller
Renaming routes in Rails 2.\ is straight forward. It goes something like this. This will give you users\path and form\for(User.new) helpers, for instance, mapping the url to /members instead of...