aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations/association_collection.rb
Commit message (Expand)AuthorAgeFilesLines
* I N C E P T I O N: flatten_deeper works around a bug in Ruby 1.8.2.Aaron Patterson2010-12-271-2/+2
* Refactor we_can_set_the_inverse_on_this? to use a less bizarre name amongst o...Jon Leighton2010-12-261-4/+2
* Add a HasAssociation module for common code for has_* associationsJon Leighton2010-12-261-0/+2
* Associations: DRY up the code which is generating conditions, and make it all...Jon Leighton2010-12-261-1/+1
* scoped.where_values_hash is never nilJon Leighton2010-12-261-1/+1
* When a has_many association is not :uniq, appending the same record multiple ...Jon Leighton2010-12-231-2/+2
* no use for set, no need to to_ary, reduce extra objectsAaron Patterson2010-12-201-3/+2
* use array arithmetic rather than create setsAaron Patterson2010-12-201-4/+2
* Refactor create_record and build_record in AssociationCollectionJon Leighton2010-12-201-17/+5
* Delete create, create! and create_record from HasManyThroughAssociation in ex...Jon Leighton2010-12-201-12/+14
* Specify insert_record with NotImplementedError in AssociationCollection, to i...Jon Leighton2010-12-201-0/+11
* Replace rudimentary named_scope with scope. [#6052 state:resolved]Pavel Gorbokon2010-12-151-8/+8
* Partialy revert f1c13b0dd7b22b5f6289ca1a09f1d7a8c7c8584bJosé Valim2010-11-281-11/+11
* nil check unneeded ht. exvivaSantiago Pastorino2010-11-251-1/+1
* Use ternary instead explicit return.Emilio Tagua2010-11-251-2/+1
* Remove return, we are already returning self.Emilio Tagua2010-11-251-6/+6
* class inheritable attributes is used no more! all internal use of class inher...Josh Kalderimis2010-11-201-1/+1
* super automatically passes on the implicit blockAaron Patterson2010-11-161-5/+1
* use unless instead of if !Aaron Patterson2010-11-161-1/+1
* removing space errorsAaron Patterson2010-11-161-3/+3
* reloading an association will properly set attributes of instantiated objects...Aaron Patterson2010-11-161-1/+3
* refactoring uniq methodAaron Patterson2010-11-161-7/+4
* if association is already loaded and if a find operation is performed on the ...Neeraj Singh2010-11-151-1/+2
* Execute less operationsSantiago Pastorino2010-11-091-2/+1
* use persisted? instead of new_record? wherever possibleDavid Chelimsky2010-11-091-10/+11
* Refactoring: replace the mix of variables like @finder_sql, @counter_sql, etc...Jon Leighton2010-10-301-37/+29
* Refactor AssociationCollection#include? with objects in memoryCarlos Antonio da Silva2010-10-021-4/+3
* AssociationCollection#include? working properly for objects added with build ...Marcelo Giorgi2010-09-301-0/+13
* Refactor association_collection uniq method.Emilio Tagua2010-09-221-4/+3
* Use scoped here to get the scoped whereSantiago Pastorino2010-09-051-5/+3
* While creating a new record using has_many create method default scope of chi...Neeraj Singh2010-08-191-1/+6
* fixed joining of attributes when using find_or_create_by with multiple attrib...Jon Buda2010-07-281-1/+1
* No need to check for :uniqNeeraj Singh2010-07-261-6/+3
* Make use of tap to return a previously used varSantiago Pastorino2010-07-211-4/+4
* association load target shouldn't replace recordsSzetobo2010-07-211-3/+4
* In nested_attributes when association is not loaded and associationSubba Rao Pasupuleti2010-07-211-1/+8
* Removed warnings when a variable is shadowedŁukasz Strzałkowski2010-07-191-3/+3
* Remove unintentional API changes. [#1108]Pratik Naik2010-07-141-9/+4
* count method should not take options if it is operated on has_many associatio...Neeraj Singh2010-07-131-2/+5
* fix ActiveRecord `destroy_all` so it returns destroyed recordsMislav Marohnić2010-07-081-3/+4
* Don't remove scheduled destroys when loading an association. [#4642 state:res...James Le Cuirot2010-07-011-1/+6
* AssociationCollection#create_by_*, find_or_create_by_* work properly now. [#1...Aaron Patterson2010-06-291-0/+11
* Don't define block, just yield if block is given.Emilio Tagua2010-06-241-7/+7
* Merge remote branch 'rails/master'Xavier Noria2010-06-201-1/+5
|\
| * Don't overwrite unsaved updates when loading an association but preserve the ...James Le Cuirot2010-06-201-1/+5
* | Adds title to activerecord/lib/active_record/associations/*Rizwan Reza2010-06-161-0/+2
|/
* Revert "Don't overwrite unsaved updates when loading an association but prese...José Valim2010-06-111-1/+1
* Don't overwrite unsaved updates when loading an association but preserve the ...James Le Cuirot2010-06-091-1/+1
* Properly cache association_collection#scopes calls having argumentsPratik Naik2010-06-041-1/+2
* Ensure not to load the entire association when bulk updating existing records...Pratik Naik2010-04-141-10/+10