aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/nested_attributes.rb
Commit message (Collapse)AuthorAgeFilesLines
* 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
| | | | "included" block DSL into separate modules. But, unify both approaches under AS::Concern.
* 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 ↵Mike Breen2009-05-101-1/+10
| | | | Proc that will reject any record with blank attributes.
* Changed API of NestedAttributes to take an array, or hash with index keys, ↵Lance Ivy2009-02-131-100/+146
| | | | | | | | of hashes that have the id on the inside of the attributes hash and updated the FormBuilder to produce such hashes. Also fixed NestedAttributes with composite ids. Signed-off-by: Michael Koziarski <michael@koziarski.com> Signed-off-by: Eloy Duran <eloy.de.enige@gmail.com> [#1892 state:committed]
* Nested attribute accessors should ignore new records with truthy _delete key.Pascal Ehlert2009-02-061-2/+6
| | | | | Signed-off-by: Michael Koziarski <michael@koziarski.com> [#1861 state:committed]
* Add support for nested object forms to ActiveRecord and the helpers in ↵Eloy Duran2009-02-011-0/+279
ActionPack Signed-Off-By: Michael Koziarski <michael@koziarski.com> [#1202 state:committed]