aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations/collection_association.rb
Commit message (Expand)AuthorAgeFilesLines
* ids_reader method fixed, test added to has_many associationgregolsen2012-01-311-1/+1
* Remove Array.wrap calls in ActiveRecordRafael Mendonça França2012-01-061-3/+1
* Use 1.9 waySantiago Pastorino2012-01-051-6/+1
* bypass preloading for ids_readerSergey Nartimov2011-12-181-2/+10
* Fix #3672 again (dependent: delete_all perf)Jon Leighton2011-12-141-0/+7
* load has_many associations keyed off a custom primary key if that key is pres...Brian Samson2011-11-251-1/+1
* Merge pull request #3507 from jmazzi/issue-3503Jeremy Kemper2011-11-031-2/+6
* Changed a few instances of of words in the API docs written in British Englis...Oemuer Oezkir2011-07-241-1/+1
* Fix bug in collection_singular_ids on has many through association with condi...Anatoliy Lysenko2011-07-061-1/+1
* Fixed CollectionAssociation#find to be compatible with Array#findBogdan Gusiev2011-07-051-3/+7
* Assign the association attributes to the associated record before the before_...Jon Leighton2011-06-301-6/+0
* Replace inline lambdas with named methodsJon Leighton2011-06-121-29/+42
* Don't wrap operations on collection associations in transactions when they ar...benedikt2011-06-121-3/+9
* Don't double assign attributes - closes #1467.Andrew White2011-06-031-1/+0
* Only save the record once when calling create! on a collection association. F...Jon Leighton2011-05-311-19/+21
* Implementing @dmathieu's cleaner fix from #1425. Unfortunately he deleted the...Jon Leighton2011-05-311-8/+5
* Adding comment to work with 1.8.7. Nested Attribute fix.Arun Agrawal2011-05-311-0/+3
* Fix nested attribute for memory record.Arun Agrawal2011-05-311-1/+5
* Remove extra white spaces on ActiveRecord docs.Sebastian Martinez2011-05-231-1/+1
* Pass the attribute and option hashes to build_associationAndrew White2011-05-171-2/+6
* These extra array operations appear to be unnecessary. Reasoning:Jon Leighton2011-05-141-8/+2
* CollectionAssociation#merge_target_lists should write to the underlying attri...Jon Leighton2011-05-141-5/+2
* An attempt to make CollectionAssociation#merge_target_lists make more sense.Jon Leighton2011-05-141-16/+35
* Instead of doing find(:all) which does scoped.find(:all) which does scoped.al...Jon Leighton2011-05-131-1/+1
* Remove pointless rescue (it doesn't happen anywhere in the tests, and I can't...Jon Leighton2011-05-131-9/+1
* Modified CollectionAssociation to refer to the new class name.Michael Ebens2011-05-111-1/+1
* Remove unnecessary '|| {}'Jon Leighton2011-05-101-1/+1
* Don't use mass-assignment protection when applying the scoped.scope_for_creat...Jon Leighton2011-05-101-2/+4
* Fix #480. Passing nil to create association works.José Valim2011-05-101-1/+1
* Revert "b9ea751d0e56bd00d341766977a607ed3f7ddd0f".José Valim2011-05-101-26/+27
* singular and collection relations in AR can now specify mass-assignment secur...Josh Kalderimis2011-05-011-10/+10
* Removing the scope-caching which happens on association proxies, because the ...Jon Leighton2011-04-121-12/+0
* Move the code which builds a scope for through associations into a generic As...Jon Leighton2011-03-101-13/+0
* Use proper objects to do the work to build the associations (adding methods, ...Jon Leighton2011-02-211-0/+39
* Delegate Association#options to the reflection, and replace 'reflection.optio...Jon Leighton2011-02-211-24/+24
* Associations - where possible, call attributes methods rather than directly a...Jon Leighton2011-02-211-49/+49
* Split AssociationProxy into an Association class (and subclasses) which manag...Jon Leighton2011-02-181-0/+510