| Commit message (Expand) | Author | Age | Files | Lines |
* | Allow assignment on has_one :through where the owner is a new record [#5137 s... | Jon Leighton | 2011-01-03 | 1 | -0/+1 |
* | Rename AssociationReflection#primary_key_name to foreign_key, since the optio... | Jon Leighton | 2010-12-31 | 1 | -3/+3 |
* | Only call save on belongs_to associations if the record has changed or any ne... | Chiel Wester | 2010-12-16 | 1 | -1/+1 |
* | Partialy revert f1c13b0dd7b22b5f6289ca1a09f1d7a8c7c8584b | José Valim | 2010-11-28 | 1 | -7/+7 |
* | fix typo | Ray Baxter | 2010-11-22 | 1 | -1/+1 |
* | use persisted? instead of new_record? wherever possible | David Chelimsky | 2010-11-09 | 1 | -7/+7 |
* | Refactoring: replace the mix of variables like @finder_sql, @counter_sql, etc... | Jon Leighton | 2010-10-30 | 1 | -2/+2 |
* | has_one maintains the association with separate after_create/after_update | Xavier Noria | 2010-10-22 | 1 | -1/+10 |
* | Deletes trailing whitespaces (over text files only find * -type f -exec sed '... | Santiago Pastorino | 2010-08-14 | 1 | -5/+5 |
* | Removing most of the symbol to proc usage in Active Record | Prem Sichanugrist | 2010-08-13 | 1 | -1/+1 |
* | be more precise re :validate and :autosave | Xavier Noria | 2010-08-12 | 1 | -2/+1 |
* | revises some autosave docs, style and content | Xavier Noria | 2010-08-12 | 1 | -57/+22 |
* | applied guidelines to "# =>" | Paco Guzman | 2010-08-12 | 1 | -5/+5 |
* | adding more documentation for autosave option | Neeraj Singh | 2010-08-09 | 1 | -13/+37 |
* | adding the missing closing tag | Neeraj Singh | 2010-07-31 | 1 | -1/+1 |
* | fixing documentation just a little bit | Neeraj Singh | 2010-07-31 | 1 | -20/+14 |
* | Removing unnecessary code [#5192 state:resolved] | Thiago Pradi | 2010-07-26 | 1 | -4/+0 |
* | Revert "save on parent should not cascade to child unless child changed [#335... | José Valim | 2010-07-21 | 1 | -3/+1 |
* | save on parent should not cascade to child unless child changed [#3353 state:... | Subba Rao Pasupuleti | 2010-07-18 | 1 | -1/+3 |
* | Add module_eval missing file_name and line_number args [#4712 state:resolved] | Evgeniy Dolzhenko | 2010-06-26 | 1 | -2/+2 |
* | Adds title and basic description where needed. | Rizwan Reza | 2010-06-15 | 1 | -0/+2 |
* | Fix a bunch of minor spelling mistakes | Evgeniy Dolzhenko | 2010-06-11 | 1 | -1/+1 |
* | Make the logic for nested_records_changed_for_autosave? simpler. | José Valim | 2010-06-07 | 1 | -9/+5 |
* | Fixing test class names and refactor line in autosave association | Carlos Antonio da Silva | 2010-06-07 | 1 | -1/+1 |
* | Nested records (re: autosave) are now updated even when the intermediate pare... | Ian White | 2010-05-18 | 1 | -1/+22 |
* | eliminate alias_method_chain from ActiveRecord | wycats | 2010-05-09 | 1 | -4/+2 |
* | save(false) is gone, use save(:validate => false) instead. | José Valim | 2010-01-17 | 1 | -5/+5 |
* | Different nested validations should not be ignore [#3638 status:resolved] | José Valim | 2010-01-14 | 1 | -1/+2 |
* | Renamed AssociationReflection #collection_association? to #collection?. | Eloy Duran | 2010-01-08 | 1 | -1/+1 |
* | Rollback the transaction when one of the autosave associations fails to save.... | Eloy Duran | 2010-01-08 | 1 | -4/+10 |
* | Exclude unchanged records from the collection being considered for autosave. ... | Lawrence Pit | 2010-01-08 | 1 | -3/+3 |
* | Moved the validation logic to the association reflection and refactored autos... | Eloy Duran | 2010-01-07 | 1 | -23/+16 |
* | Don't use strings for callbacks, as these will be evaled. Rather use symbols,... | Eloy Duran | 2010-01-07 | 1 | -2/+2 |
* | Cleanup some code in nested_attributes.rb, autosave_association.rb, and assoc... | Eloy Duran | 2010-01-07 | 1 | -2/+1 |
* | Make nested attributes behave like in 2.3.5 and add a sanity test for it with... | José Valim | 2010-01-02 | 1 | -1/+1 |
* | Make sure to not add autosave callbacks multiple times. [#3575 state:resolved] | Eloy Duran | 2009-12-28 | 1 | -14/+26 |
* | Add new finder methods to association collection. | Pratik Naik | 2009-12-27 | 1 | -2/+2 |
* | Removed some superfluous conditionals from the autosave association validatio... | Eloy Duran | 2009-09-12 | 1 | -5/+3 |
* | Define autosave association validation methods only when needed. [#3161 state... | Alexey Kovyrin | 2009-09-12 | 1 | -3/+10 |
* | During autosave, ignore records that already have been destroyed. [#2537 stat... | Eloy Duran | 2009-09-12 | 1 | -2/+4 |
* | Fix has_one with foreign_key and primary_key association bug which caused the... | Graeme Porteous | 2009-09-12 | 1 | -3/+6 |
* | Fix autosave association to skip validation if it is marked for destruction. ... | Dmitry Polushkin | 2009-09-12 | 1 | -7/+5 |
* | Explicitely setting `autosave => false' should override new_record autosaving... | Eloy Duran | 2009-09-12 | 1 | -3/+3 |
* | Don't cascade autosave validation to destroyed children. [#2761 state:resolved] | Lance Ivy | 2009-09-12 | 1 | -0/+2 |
* | Add primary_key option to belongs_to association | Szymon Nowak | 2009-07-15 | 1 | -1/+2 |
* | Merge branch 'master' into active_model | Joshua Peek | 2009-05-29 | 1 | -12/+15 |
|\ |
|
| * | Break up DependencyModule's dual function of providing a "depend_on" DSL and ... | Joshua Peek | 2009-05-28 | 1 | -1/+1 |
| * | Use DependencyModule for included hooks in ActiveRecord | Bryan Helmkamp | 2009-05-11 | 1 | -7/+6 |
| * | Ensure the parent record is always saved when the child is invalid. [#2249 st... | Eloy Duran | 2009-04-27 | 1 | -5/+9 |
* | | Move all the Active Record validations to Active Model | Pratik Naik | 2009-03-19 | 1 | -1/+1 |
|/ |
|