aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Remove AS declarative extension from erb tag testCarlos Antonio da Silva2012-07-081-3/+0
| | | | | The extension was removed in 22bc12ec374b8bdeb3818ca0a3eb787dd3ce39d8, making "test" an alias for minitest's "it".
* we still need `describe` as the implementation differs from minitestAaron Patterson2012-07-082-0/+24
|
* Merge pull request #7004 from philiqq/masterXavier Noria2012-07-086-7/+7
|\ | | | | [Guide] Fix broken links
| * Fix broken links in 2.2 release notes, i18n, debugging, security, 2.3 ↵Philipp Franke2012-07-086-7/+7
| | | | | | | | release notes, plugins
* | Merge pull request #6956 from lexmag/ref_migration_generatorRafael Mendonça França2012-07-084-4/+103
|\ \ | | | | | | Add references statements to migration generator
| * | Update migrations guideAleksey Magusev2012-07-081-0/+47
| | | | | | | | | | | | | | | Add a paragraph about references statements in migration generator and the subchapter "Supported type modifiers"
| * | Add references statements to migration generatorAleksey Magusev2012-07-083-4/+56
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | AddXXXToYYY/RemoveXXXFromYYY migrations are produced with references statements, for instance rails g migration AddReferencesToProducts user:references supplier:references{polymorphic} will generate the migration with: add_reference :products, :user, index: true add_reference :products, :supplier, polymorphic: true, index: true
* | | minitest provides "it" and "describe"Aaron Patterson2012-07-082-42/+4
| | | | | | | | | | | | Remove rails implementation of describe, alias "test" to "it"
* | | minitest is a gem dep, so remove this conditionalAaron Patterson2012-07-081-6/+0
| | |
* | | Merge pull request #7003 from philiqq/masterCarlos Antonio da Silva2012-07-081-2/+2
|\ \ \ | | |/ | |/| Fix Bleak House link in debugging guide. Closes #7002
| * | fix broken bleak_house linkPhilipp Franke2012-07-081-2/+2
| |/
* | Improve and fix AP changelog, sync release notes [ci skip]Carlos Antonio da Silva2012-07-082-2/+14
| |
* | Rename RouteInspector to RoutesInspectorCarlos Antonio da Silva2012-07-085-7/+6
| | | | | | | | Follow the consistency defined in dbc43bc.
* | Remove RoutesInspector from railties, since it was moved to APCarlos Antonio da Silva2012-07-083-290/+0
| | | | | | | | | | Changes introduced in 7404cda9f61e41d52ce244d60abbf598684a96c4. Fix railties build.
* | Merge pull request #6998 from robin850/patch-1Carlos Antonio da Silva2012-07-081-2/+23
|\ \ | |/ |/| Add few information on Fedora and CentOS [ci skip]
| * Add few information on Fedora and CentOSRobin Dupret2012-07-081-2/+23
| |
* | Merge pull request #6696 from schneems/schneems/sextant-routing-errorJosé Valim2012-07-088-10/+323
|\ \ | | | | | | Show Routes while Debugging RoutingError
| * | show routes while debugging added to changelogschneems2012-07-071-0/+2
| | |
| * | move route_inspector to actionpack@schneems and @mattt2012-07-076-10/+304
| | | | | | | | | | | | this is so we can show route output in the development when we get a routing error. Railties can use features of ActionDispatch, but ActionDispatch should not depend on Railties.
| * | show routes while debugging RoutingErrorschneems2012-07-072-3/+20
|/ / | | | | | | If someone receives a routing error, they likely need to view the routes. Rather than making them visit '/rails/info/routes' or run `rake routes` we can give them that information on the page.
* | Merge branch 'master' of github.com:lifo/docrailsVijay Dev2012-07-0720-176/+258
|\ \
| * | minor text change [ci skip]Vijay Dev2012-07-071-1/+1
| | |
| * | Revert "Add nodoc to relation methods"Vijay Dev2012-07-071-22/+24
| | | | | | | | | | | | | | | | | | This reverts commit c47a698d5d497340d4e349257522212173865838. Reason: Let's revert pending further discussions
| * | Add nodoc to relation methodsOscar Del Ben2012-07-061-24/+22
| | |
| * | add :nodoc: to internal implementations of AM::Validator [ci skip]Francesco Rodriguez2012-07-062-3/+3
| | |
| * | update ActiveModel::Serialization documentation [ci skip]Francesco Rodriguez2012-07-061-14/+36
| | |
| * | Add order docsOscar Del Ben2012-07-051-0/+10
| | |
| * | Add group documentationOscar Del Ben2012-07-051-0/+12
| | |
| * | Add documentation for includesOscar Del Ben2012-07-051-0/+11
| | |
| * | Update list of AR Relation methodsOscar Del Ben2012-07-051-10/+16
| | |
| * | Bump query guide to latest versionOscar Del Ben2012-07-051-2/+0
| | |
| * | fix syntax of AM::Validations::HelperMethods examples [ci skip]Francesco Rodriguez2012-07-054-6/+6
| | |
| * | update ActiveModel::Validations::HelperMethods documentation [ci skip]Francesco Rodriguez2012-07-058-130/+141
| | |
| * | update ActiveModel::Conversion documentation [ci skip]Francesco Rodriguez2012-07-041-3/+15
| | |
| * | There is only task for installing migrations when using enginesWojciech Wnętrzak2012-07-041-2/+1
| | |
| * | remove :nodoc: of AR::Scoping#unscoped [ci skip]Francesco Rodriguez2012-07-011-4/+4
| | |
| * | Changed attr_accessible example to reflect grouped rolesLaknath2012-07-011-2/+4
| | | | | | | | | | | | | | | Related to the request #5699 - https://github.com/rails/rails/pull/5699 and not documented.
| * | ActionDispatch::ClosedError no longer is raised. See d142572567 for more info.Nick Howard2012-06-301-3/+0
| | |
| * | use config.action_controller instead of ActionController::Base in example ↵Nick Howard2012-06-301-1/+1
| | | | | | | | | | | | code for asset_tag_helper
| * | fix AR::SchemaStatements#column_exists? example [ci skip]Francesco Rodriguez2012-06-301-1/+1
| | |
| * | update AR::SchemaStatements#column_exists? documentation [ci skip]Francesco Rodriguez2012-06-301-2/+4
| | |
* | | Refactor locked? method in query cacheCarlos Antonio da Silva2012-07-071-5/+2
| | | | | | | | | | | | Introduced in 75b340d1a4bcf2f1233fb65a15ff6b8059e2230e
* | | Load all records in Relation#inspectJon Leighton2012-07-071-4/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A test was failing due to the way that Relation#inspect causes association proxies to ignore unsaved records added to the association. This is fixed by simply calling to_a and letting to_a figure out how to get the records (which, in the case of associations, takes into account new records). I think it is acceptable to do this rather than limiting the query at the database level: * It's what we've done in all released Rails versions up to this point * The goal of the limit is to not flood the console with output - this is the problem we're targeting, rather than the actual loading of the records from the database * You probably want to do something with those records later anyway, otherwise you wouldn't have built a relation for them.
* | | Merge pull request #6938 from acapilleri/as_json_refactoringCarlos Antonio da Silva2012-07-071-2/+6
|\ \ \ | | | | | | | | Small refactoring of as_json method
| * | | small refactoring of as_json methodAngelo Capilleri2012-07-031-2/+6
| | | | | | | | | | | | | | | | with this change root has always one assignment
* | | | Merge pull request #6838 from kennyj/added_registration_taskCarlos Antonio da Silva2012-07-072-7/+27
|\ \ \ \ | | | | | | | | | | Allow to register database tasks from different adapters
| * | | | Added a feature to add a database task. e.g. OracleDatabaseTaskskennyj2012-06-242-7/+27
| | | | |
* | | | | Use "instance_accessor" for flash types class attributeCarlos Antonio da Silva2012-07-072-4/+3
| |_|_|/ |/| | |
* | | | fixup changelogJon Leighton2012-07-071-1/+1
| | | |
* | | | Relation#inspect handles doesn't perform a new query on an already-loaded ↵Jon Leighton2012-07-072-2/+16
| | | | | | | | | | | | | | | | relation