aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/relation.rb
Commit message (Expand)AuthorAgeFilesLines
* minor copy edits [ci skip]Vijay Dev2012-07-211-3/+1
* Fix typosOscar Del Ben2012-07-191-3/+3
* Fix typos and add nodocs to NullRelationOscar Del Ben2012-07-171-3/+3
* Improve docs for AR RelationOscar Del Ben2012-07-171-7/+19
* Add docs for Relation initialize, create and create!Oscar Del Ben2012-07-161-1/+34
* Don't link to edgeguides in docsOscar Del Ben2012-07-161-1/+1
* Load all records in Relation#inspectJon Leighton2012-07-071-4/+1
* Relation#inspect handles doesn't perform a new query on an already-loaded rel...Jon Leighton2012-07-071-1/+4
* Simplify Relation#inspectJon Leighton2012-07-071-12/+3
* Limit the number of records in Relation#inspectDamien Mathieu2012-07-061-1/+13
* Show the records in Relation#inspectJon Leighton2012-07-061-0/+4
* Remove ActiveRelation#inspectBrian Cardarella2012-06-291-4/+0
* Refactor Relation#update a bit to avoid an extra Enumerator instanceCarlos Antonio da Silva2012-06-181-1/+1
* add explanation of raising errors when a limit scope is supplied in Relation#...Francesco Rodriguez2012-05-181-11/+11
* delete_all raise an error if a limit is provided - fixes #4979Francesco Rodriguez2012-04-301-0/+2
* extract #with_scope and #with_exclusive_scope to active_record_deprecated_fin...Jon Leighton2012-04-251-1/+4
* move some of the update_all implementation to active_record_deprecated_findersJon Leighton2012-04-131-27/+14
* now we can just manipulate the values hash in #only and #exceptJon Leighton2012-04-131-4/+8
* use a hash to store relation valuesJon Leighton2012-04-131-15/+12
* Make Relation#extending work like other value methodsJon Leighton2012-04-131-3/+4
* assert valid keysJon Leighton2012-04-131-0/+2
* Allow Relation#merge to take a hashJon Leighton2012-04-131-1/+1
* we have no need for the ASSOCIATION_METHODS constantJon Leighton2012-04-131-4/+7
* Fix delete_all when chained with joins.Rafael Mendonça França2012-04-101-2/+10
* Correct description of ['migrated_at > ?', 1.week.ago] from "more than a week...Dave Burt2012-03-201-1/+1
* relation .present? and .blank? should not query SELECT COUNT(DISTINCT id)Thiago Almeida2012-03-161-0/+4
* Remove IdentityMapCarlos Antonio da Silva2012-03-131-10/+1
* use bind values for join columnsAaron Patterson2012-02-271-1/+6
* prepared statements can be disabledAaron Patterson2012-02-211-1/+2
* let AR::Relation pretty_printed like an ArrayAkira Matsuda2012-01-211-0/+4
* Deprecate inferred JOINs with includes + SQL snippets.Jon Leighton2012-01-161-3/+25
* store references as a stringJon Leighton2012-01-161-1/+1
* Make referencing an included item trigger eager loadingJon Leighton2012-01-161-1/+2
* Add ActiveRecord::Relation#references (#950)Jon Leighton2012-01-161-1/+1
* Revert "Deprecate implicit eager loading. Closes #950."Jon Leighton2012-01-161-13/+1
* correctly handle order calls after a reorderMatt Jones + Scott Walker2012-01-031-1/+1
* Merge branch 'master' of github.com:lifo/docrailsVijay Dev2011-12-291-1/+1
|\
| * typoJo Liss2011-12-281-1/+1
* | Deprecate implicit eager loading. Closes #950.Jon Leighton2011-12-291-1/+13
|/
* AS::Concern is not really needed for AR::ExplainXavier Noria2011-12-161-1/+1
* Split out most of the AR::Base code into separate modules :cake:Jon Leighton2011-12-151-1/+1
* Set up delegations also for to_a and arel branches.José Valim2011-12-151-7/+0
* Move delegation reponsibilities of Relation to a module. Also precompile meth...José Valim2011-12-151-22/+1
* Make with_scope public so we stop using send :bomb:José Valim2011-12-151-1/+1
* Improve delegate list to avoid method missing.José Valim2011-12-151-1/+2
* There isn't a column_hash. It was being invoked by method missing.José Valim2011-12-151-1/+1
* implements a much faster auto EXPLAIN, closes #3843 [José Valim & Xavier Noria]Xavier Noria2011-12-041-5/+5
* indentation fix warningArun Agrawal2011-12-021-1/+1
* revises some details in the previous explain patchXavier Noria2011-12-021-1/+1
* implements automatic EXPLAIN logging for slow queriesXavier Noria2011-12-021-16/+29