aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/relation.rb
Commit message (Collapse)AuthorAgeFilesLines
...
* Use immutable relation objects to generate queries.Emilio Tagua2009-08-181-37/+34
|
* Use explicit method definition instead of metaprogramming.Emilio Tagua2009-08-181-11/+16
|
* Relation#joins! should know what to join instead of delegating toEmilio Tagua2009-08-181-7/+13
| | | | construct_join.
* Use finder options as relation method names to provide more familiarEmilio Tagua2009-08-181-8/+24
| | | | | naming. Use bang methods convention in methods that alter the relation.
* Use ARel's joins when building a query for finding records with includedEmilio Tagua2009-08-141-3/+9
| | | | associations.
* Added collection iteration to AR::Relation.Emilio Tagua2009-08-031-0/+4
|
* Added ActiveRecord::Relation tests. Allow Relation to accept conditionalEmilio Tagua2009-07-311-1/+14
| | | | hashes and arrays like #find does.
* Introduced ActiveRecord::Relation, a layer between an ARel relation and an ↵Emilio Tagua2009-07-211-0/+39
AR relation