aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/nested_attributes.rb
Commit message (Expand)AuthorAgeFilesLines
* Use primary key in conditions, not 'id' [#4395 state:resolved]Mathieu Arnold2010-05-041-1/+1
* Some require indifferent_access addedSantiago Pastorino2010-04-211-0/+1
* Ensure not to load the entire association when bulk updating existing records...Pratik Naik2010-04-141-2/+12
* adds missing requires for Object#blank? and Object#present?Xavier Noria2010-03-281-0/+1
* cleaning up a bunch of method already defined warnings [#4209 state:resolved]Aaron Patterson2010-03-171-0/+3
* clean up more warnings, remove unnecessary methods, fix eval line numbers. [#...Aaron Patterson2010-03-161-2/+2
* Merge docrailsPratik Naik2010-01-171-5/+5
* Renamed AssociationReflection #collection_association? to #collection?.Eloy Duran2010-01-081-1/+1
* Raise a RecordNotFound if an ID in nested attributes is given but doesn't ret...Eloy Duran2010-01-071-0/+11
* Remove deprecated '_delete' option from NestedAttributes.Eloy Duran2010-01-071-13/+2
* Removed unnecessary call to #try and cleaned up a bit more.Eloy Duran2010-01-071-6/+4
* Cleanup some code in nested_attributes.rb, autosave_association.rb, and assoc...Eloy Duran2010-01-071-7/+1
* Refactored nested attributes a bit around :reject_if => :all_blank.Eloy Duran2010-01-071-5/+4
* Refactored previous changes to nested attributes.Eloy Duran2009-12-281-32/+18
* Add an :update_only option to accepts_nested_attributes_for for to-one associ...Michael Siebert2009-12-281-3/+23
* Make sure to not add autosave callbacks multiple times. [#3575 state:resolved]Eloy Duran2009-12-281-3/+1
* Define autosave association callbacks when using accepts_nested_attributes_for.Eloy Duran2009-11-071-0/+2
* Add a :limit option to specify the maximum number of records that can be proc...Pratik Naik2009-10-091-1/+14
* Store entire options hash in the class var rather than just the reject_if pro...Pratik Naik2009-10-091-12/+15
* Use indifferent access attributes instead of stringifying themPratik Naik2009-10-081-2/+2
* Allow accepts_nested_attributes_for :reject_if option accept symbols for usin...Pratik Naik2009-10-071-6/+33
* Rename nested attributes _delete to _destroy to reflect its actual behavior a...José Valim2009-09-121-21/+32
* Raise an exception with friendlier error message when attempting to build a p...Mike Breen2009-09-121-1/+6
* Merge docrailsPratik Naik2009-07-251-1/+1
* Break up DependencyModule's dual function of providing a "depend_on" DSL and ...Joshua Peek2009-05-281-1/+1
* Cherry-pick core extensionsJeremy Kemper2009-05-131-0/+3
* Use DependencyModule for included hooks in ActiveRecordBryan Helmkamp2009-05-111-4/+5
* Allow you to pass :all_blank to :reject_if option to automatically create a P...Mike Breen2009-05-101-1/+10
* Changed API of NestedAttributes to take an array, or hash with index keys, of...Lance Ivy2009-02-131-100/+146
* Nested attribute accessors should ignore new records with truthy _delete key.Pascal Ehlert2009-02-061-2/+6
* Add support for nested object forms to ActiveRecord and the helpers in Action...Eloy Duran2009-02-011-0/+279