aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/upgrading_ruby_on_rails.textile
Commit message (Collapse)AuthorAgeFilesLines
* AR::Relation#order: make new order prepend old oneBogdan Gusiev2012-07-311-0/+2
| | | | | | | User.order("name asc").order("created_at desc") # SELECT * FROM users ORDER BY created_at desc, name asc This also affects order defined in `default_scope` or any kind of associations.
* Support unicode character route in config/routes.rb.kennyj2012-06-161-0/+2
|
* copy edits the upgrading guideXavier Noria2012-05-291-9/+9
|
* Add note about CollectionAssociation#delete change to upgrading guide [ci skip]Carlos Antonio da Silva2012-05-291-0/+4
|
* Fix sorting of helpers from different pathsPiotr Sarnacki2012-05-281-0/+4
| | | | | | | | | | | | | | | | When more than one directory for helpers is provided to a controller, it should preserver the order of directories. Given 2 paths: MyController.helpers_paths = ["dir1/helpers", "dir2/helpers"] helpers from dir1 should be loaded first. Before this commit, all helpers were mixed and then sorted alphabetically, which essentially would require to rename helpers to get desired order. This is a problem especially for engines, where you would like to be able to predict accurately which engine helpers will load first. (closes #6496)
* Fix CHANGELOG order and add a brief description of the changes in theRafael Mendonça França2012-05-201-0/+4
| | | | Action Pack in the upgrading guide. [ci skip]
* Rails 4.0 upgrade note for the ConfirmationValidator changeBrian Cardarella2012-04-301-0/+4
|
* moves the guides up to the root directoryXavier Noria2012-03-171-0/+194