Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge branch 'master' of github.com:rails/docrails | Vijay Dev | 2013-09-28 | 1 | -1/+1 |
|\ | |||||
| * | use active voice and use more descriptive terms | Weston Platter | 2013-09-22 | 1 | -1/+1 |
| | | |||||
* | | quote `false` reference in querying guide. | Yves Senn | 2013-09-26 | 1 | -1/+1 |
| | | |||||
* | | [ci skip] Correct the explanation of the example for find_or_create_by when ↵ | Daniel Lissner | 2013-09-25 | 1 | -1/+1 |
|/ | | | | used with create_with in ActiveRecord Querying guide | ||||
* | Merge branch 'master' of github.com:rails/docrails | Vijay Dev | 2013-09-13 | 1 | -6/+10 |
|\ | |||||
| * | added # or comment | Sergio | 2013-09-05 | 1 | -1/+1 |
| | | |||||
| * | Review the changes made on 90155b4e28a3887dce9428e9df150ede3d6c7465 | Rafael Mendonça França | 2013-09-04 | 1 | -5/+9 |
| | | |||||
| * | Client.exists?(1,2,3) and Client.exists?([1,2,3]) does not work | Sergio | 2013-09-05 | 1 | -3/+3 |
| | | | | | | | | The right command for doing that is Client.exists?id:[1,2,3] Exists does not work like find method, in find method you can do Person.find(1, 2, 6) or Person.find([7, 17]) but not Person.exists?(1,2,3) or Person.exists?([1,2,3]) | ||||
| * | Example of Join models | Sergio | 2013-09-04 | 1 | -1/+1 |
| | | | | | | In the example of join models, there are five models but in the explanation only consider Category, Post, Comment and Guest. | ||||
* | | Document a difference between pluck and select [ci skip] | Eugene Gilburg | 2013-09-04 | 1 | -2/+33 |
|/ | | | | Explain that `pluck` differs from `select` in that it does not construct `ActiveRecord` objects and thus model-level overrides are unavailable. | ||||
* | Add examples of AR order method's hash notation to Rails Guide [ci skip] | Sugino Yasuhiro | 2013-08-22 | 1 | -0/+10 |
| | |||||
* | Merge branch 'master' of github.com:rails/docrails | Vijay Dev | 2013-08-17 | 1 | -7/+1 |
|\ | | | | | | | | | | | | | | | Conflicts: actionview/README.rdoc activerecord/lib/active_record/migration.rb guides/source/development_dependencies_install.md guides/source/getting_started.md | ||||
| * | Revert "Merge branch 'master' of github.com:rails/docrails" | Vijay Dev | 2013-08-17 | 1 | -7/+1 |
| | | | | | | | | | | | | | | This reverts commit 70d6e16fbad75b89dd1798ed697e7732b8606fa3, reversing changes made to ea4db3bc078fb3093ecdddffdf4f2f4ff3e1e8f9. Seems to be a code merge done by mistake. | ||||
* | | Revert change on ActiveRecord::Relation#order method that prepends new | Rafael Mendonça França | 2013-07-29 | 1 | -2/+2 |
|/ | | | | | | | | | | | | | | | order on the old ones The previous behavior added a major backward incompatibility since it impossible to have a upgrade path without major changes on the application code. We are taking the most conservative path to be consistent with the idea of having a smoother upgrade on Rails 4. We are reverting the behavior for what was in Rails 3.x and, if needed, we will implement a new API to prepend the order clauses in Rails 4.1. | ||||
* | Add a SQL example for `not` [ci skip] | Robin Dupret | 2013-07-26 | 1 | -1/+7 |
| | | | | To share a certain logic across other examples, let's add a sample SQL code generated by the given Ruby code | ||||
* | Revert "Fix SyntaxError in guides sample code" | Erich Kist | 2013-07-18 | 1 | -1/+1 |
| | | | | | | | | This reverts commit f573df32d43c413a5098721ba6151ff190c23c6c. The original idea of this documentation was to showcase the feature where you can remove some only queries attributes with a single key-value pair. | ||||
* | Fix SyntaxError in guides sample code | Akira Matsuda | 2013-07-08 | 1 | -1/+1 |
| | | | | [ci skip] | ||||
* | 1.9 Hash Syntax | Akira Matsuda | 2013-07-08 | 1 | -1/+1 |
| | |||||
* | removed markdown code markers which were rendering in the generated AR ↵ | Brian Foshee | 2013-07-04 | 1 | -2/+0 |
| | | | | querying guide | ||||
* | Merge branch 'master' of github.com:lifo/docrails | Vijay Dev | 2013-06-26 | 1 | -1/+1 |
|\ | | | | | | | | | Conflicts: guides/source/layout.html.erb | ||||
| * | reorder finder methods list alphabetically | Mikhail Dieterle | 2013-06-16 | 1 | -1/+1 |
| | | |||||
* | | Added an example of the query without except before the example with except | Prathamesh Sonpatki | 2013-06-14 | 1 | -0/+8 |
|/ | |||||
* | Merge branch 'master' of github.com:lifo/docrails | Vijay Dev | 2013-06-14 | 1 | -2/+2 |
|\ | | | | | | | | | Conflicts: guides/source/upgrading_ruby_on_rails.md | ||||
| * | Remove double spaces in code examples | Sunny Ripert | 2013-05-28 | 1 | -1/+1 |
| | | |||||
| * | In rails 4 there are much more ways to retrieve a single object | Mikhail Dieterle | 2013-05-22 | 1 | -1/+1 |
| | | |||||
* | | Missing ending ``` at 14.2 Merging of scopes | Leo Gallucci | 2013-05-19 | 1 | -0/+1 |
|/ | | | http://edgeguides.rubyonrails.org/active_record_querying.html#merging-of-scopes | ||||
* | Rails 4 has deprecated :order in has_many to use a lambda instead, update ↵ | Nick Quaranto | 2013-05-01 | 1 | -1/+1 |
| | | | | the guide accordingly | ||||
* | it's Active Record not ActiveRecord | Yves Senn | 2013-04-30 | 1 | -1/+4 |
| | | | | /cc @fxn | ||||
* | Mention that Dynamic finders have been deprecated in Rails 4 | Jonathan Roes | 2013-04-23 | 1 | -0/+2 |
| | |||||
* | more Ruby 1.9 Hash syntax in our guides | Yves Senn | 2013-04-15 | 1 | -1/+1 |
| | |||||
* | Merge branch 'master' of github.com:lifo/docrails | Vijay Dev | 2013-03-30 | 1 | -9/+5 |
|\ | | | | | | | | | | | | | | | | | Conflicts: activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb activerecord/test/cases/adapter_test.rb guides/source/testing.md [ci skip] | ||||
| * | Update documentation for Where chained modifiers. | Ryan Sandridge | 2013-03-19 | 1 | -7/+3 |
| | | | | | | | | | | where.like and where.not_like were removed in 8d02afeaee, but the guide was not updated. | ||||
| * | do some typo fixing | Vipul A M | 2013-03-14 | 1 | -1/+1 |
| | | |||||
| * | I think "uniq" is more Rails-y than select("distinct(categories.id)") | capps | 2013-03-11 | 1 | -1/+1 |
| | | |||||
* | | rename `Relation#uniq` to `Relation#distinct`. `#uniq` still works. | Yves Senn | 2013-03-15 | 1 | -5/+6 |
|/ | | | | | | | | The similarity of `Relation#uniq` to `Array#uniq` is confusing. Since our Relation API is close to SQL terms I renamed `#uniq` to `#distinct`. There is no deprecation. `#uniq` and `#uniq!` are aliases and will continue to work. I also updated the documentation to promote the use of `#distinct`. | ||||
* | copy edits [ci skip] | Vijay Dev | 2013-03-10 | 1 | -1/+1 |
| | |||||
* | fixing typo in the merging scopes section | Neeraj Singh | 2013-03-08 | 1 | -4/+3 |
| | |||||
* | Explained how merging of scope works | Neeraj Singh | 2013-03-08 | 1 | -0/+56 |
| | |||||
* | fixes active_record_querying #pluck example | awilliams | 2013-03-07 | 1 | -1/+1 |
| | |||||
* | Created an unscope method for removing relations from a chain of | wangjohn | 2013-03-03 | 1 | -0/+21 |
| | | | | | relations. Specific where values can be unscoped, and the unscope method still works when relations are merged or combined. | ||||
* | Merge branch 'master' of github.com:lifo/docrails | Vijay Dev | 2013-02-26 | 1 | -2/+2 |
|\ | |||||
| * | Update guides/source/active_record_querying.md | Hanfei Shen | 2013-02-19 | 1 | -2/+2 |
| | | | | | | | | Fix missing `ORDER BY id ASC` for Client.first(2); Uppercase the little y in the SQL equivalent of the Client.last(2). | ||||
* | | remove AR auto-explain (config.auto_explain_threshold_in_seconds) | Yves Senn | 2013-02-24 | 1 | -39/+0 |
|/ | | | | | | | | | | We discussed that the auto explain feature is rarely used. This PR removes only the automatic explain. You can still display the explain output for any given relation using `ActiveRecord::Relation#explain`. As a side-effect this should also fix the connection problem during asset compilation (#9385). The auto explain initializer in the `ActiveRecord::Railtie` forced a connection. | ||||
* | find_last_by is deprecated in AR 4 | Akira Matsuda | 2013-01-02 | 1 | -2/+0 |
| | |||||
* | find_all_by is deprecated in AR 4 | Akira Matsuda | 2013-01-02 | 1 | -1/+1 |
| | |||||
* | Merge branch 'master' of github.com:lifo/docrails | Vijay Dev | 2012-12-08 | 1 | -11/+9 |
|\ | |||||
| * | Remove references to Rails versions. | Steve Klabnik | 2012-12-07 | 1 | -2/+0 |
| | | | | | | | | | | | | | | | | There's no reason for guides to reference old behaviors. They should be current as of the versions of Rails that they ship with, and including older information just clutters thing. I discussed this change with @fxn and he agrees. | ||||
| * | Punctuation, capitalization, grammar fixes in rails guides | Katie Oldaker | 2012-12-07 | 1 | -2/+2 |
| | | |||||
| * | Fixed grammar in a lot of guide prologues. | Katie Oldaker | 2012-12-07 | 1 | -7/+7 |
| | | |||||
| * | changing tense, since Rails 3.2 has been released | Drew Dara-Abrams | 2012-12-06 | 1 | -1/+1 |
| | |