aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/upgrading_ruby_on_rails.textile
Commit message (Collapse)AuthorAgeFilesLines
* Rename the rest of the guides to MarkdownPrem Sichanugrist2012-09-171-230/+0
|
* Merge branch 'master' of github.com:lifo/docrailsVijay Dev2012-09-091-1/+1
|\ | | | | | | | | Conflicts: activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
| * Underscore in _attr_readonly method name is back (Upgrading RoR guide) [ci skip]Aldo "xoen" Giambelluca2012-09-021-1/+1
| |
| * Fixed validation issue in Upgrading Ruby on Rails guide [ci skip]Aldo "xoen" Giambelluca2012-09-021-1/+1
| | | | | | | | | | | | | | | | In chapter 2.4 there was an underscore at the start of the attr_readonly method name, this underscore was interpreted as the opening of the <em> tag but it wasn't closed. Worst, the underscore in self.class.serialized_attributes (end of paragraph) was interpreted as the closing of the <em> tag and not as the name of a method.
* | Fixed markup in Upgrading RoR guide [ci skip]Aldo "xoen" Giambelluca2012-09-021-2/+12
|/ | | | | | | | | There are two changes: - Using <ruby> syntax for unicode character routes example instead of <tt> since it causes single quotes to be transformed into inverted commas. This makes this required change more eye-catching. - Using <tt> for the j alias and related helpers as written in the documentation guidelines.
* Add CHANGELOG entry for #3578 [ci skip]Rafael Mendonça França2012-08-211-0/+4
|
* Use instance_accessor: false instead of instance_writer.kennyj2012-08-211-0/+2
|
* 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