| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | allow AssociationProxy#scoped to take options so that API is the same as Base... | Jon Leighton | 2012-04-27 | 1 | -0/+4 |
* | %s/find(:\(first\|last\|all\), \([^()]*\))/scoped(\2).\1/gcI amongst other th... | Jon Leighton | 2012-04-27 | 1 | -2/+2 |
* | Deprecate inferred JOINs with includes + SQL snippets. | Jon Leighton | 2012-01-16 | 1 | -1/+6 |
* | Revert "Deprecate implicit eager loading. Closes #950." | Jon Leighton | 2012-01-16 | 1 | -1/+1 |
* | Deprecate implicit eager loading. Closes #950. | Jon Leighton | 2011-12-29 | 1 | -1/+1 |
* | don't change class definition in test case | Josh Susser | 2011-11-29 | 1 | -6/+0 |
* | add test for super-ing to association methods | Josh Susser | 2011-11-15 | 1 | -2/+12 |
* | association methods are now generated in modules | Josh Susser | 2011-11-15 | 1 | -0/+12 |
* | Add a proxy_association method to association proxies, which can be called by... | Jon Leighton | 2011-07-27 | 1 | -0/+5 |
* | please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT | Aaron Patterson | 2011-06-06 | 1 | -1/+1 |
* | Refactor Active Record test connection setup. Please see the RUNNING_UNIT_TES... | Jon Leighton | 2011-06-04 | 1 | -1/+1 |
* | removed deprecated methods, and related tests, from ActiveRecord | Josh Kalderimis | 2011-05-25 | 1 | -12/+0 |
* | Implement proxy_owner, proxy_target and proxy_reflection methods on Collectio... | Jon Leighton | 2011-05-19 | 1 | -0/+12 |
* | minor cleaning | Vishnu Atrai | 2011-05-10 | 1 | -1/+1 |
* | Added new #update_column method. | Sebastian Martinez | 2011-03-27 | 1 | -2/+2 |
* | Revert "Removed #update_attribute method. New #update_column method." | Sebastian Martinez | 2011-03-27 | 1 | -2/+2 |
* | Removed #update_attribute method. New #update_column method. | Sebastian Martinez | 2011-03-26 | 1 | -2/+2 |
* | Remove test which was broken on 1.8. This test is now irrelevant since singul... | Jon Leighton | 2011-02-18 | 1 | -8/+0 |
* | Split AssociationProxy into an Association class (and subclasses) which manag... | Jon Leighton | 2011-02-18 | 1 | -36/+0 |
* | class inheritable attributes is used no more! all internal use of class inher... | Josh Kalderimis | 2010-11-20 | 1 | -4/+4 |
* | removing many unused variables | Aaron Patterson | 2010-11-16 | 1 | -1/+1 |
* | Deletes trailing whitespaces (over text files only find * -type f -exec sed '... | Santiago Pastorino | 2010-08-14 | 1 | -3/+3 |
* | Making Active Record base_test.rb thinner by moving tests | Neeraj Singh | 2010-08-03 | 1 | -0/+22 |
* | Eager loading an association should not change the count of children | Neeraj Singh | 2010-08-02 | 1 | -0/+13 |
* | removing unused models from tests | Subba Rao Pasupuleti | 2010-07-21 | 1 | -11/+0 |
* | Strengthening the test for nested_attribute | Subba Rao Pasupuleti | 2010-07-21 | 1 | -1/+20 |
* | Fix the #using_limitable_reflections? helper to work correctly by not examini... | Ken Collins | 2010-07-08 | 1 | -0/+10 |
* | restricts a test to < 1.9, and rewrites it using a proper expectation | Xavier Noria | 2010-03-13 | 1 | -11/+5 |
* | adds coverage for the issue addressed in fe43bbd | Xavier Noria | 2010-03-12 | 1 | -0/+14 |
* | When passing force_reload = true to an association, don't use the query cache... | Will | 2009-12-16 | 1 | -0/+10 |
* | Removed legacy test. | Emilio Tagua | 2009-07-20 | 1 | -19/+0 |
* | Remove the functionality introduce in 28d3390 | Michael Koziarski | 2008-10-10 | 1 | -20/+0 |
* | Fixed an error triggered by a reload followed by a foreign key assignment. | Nathaniel Talbott | 2008-09-20 | 1 | -0/+8 |
* | Support for updating a belongs to association from the foreign key (without s... | Jon Leighton | 2008-09-13 | 1 | -0/+12 |
* | Revert "Add :accessible option to Associations for allowing mass assignments ... | Pratik Naik | 2008-09-10 | 1 | -108/+0 |
* | Include people and readers fixtures to fix test isolation error | Jeremy Kemper | 2008-08-26 | 1 | -2/+2 |
* | Fix file permissions | Tarmo Tänav | 2008-07-31 | 1 | -0/+0 |
* | Add :accessible option to Associations for allowing mass assignments using ha... | David Dollar | 2008-07-14 | 1 | -0/+108 |
* | Create through associations can now work with blocks. | Ryan Bates | 2008-05-24 | 1 | -6/+9 |
* | add failing test case for block-setting of attributes via association | Trevor Turk | 2008-05-24 | 1 | -0/+9 |
* | Add first/last methods to associations/named_scope. [#226 state:resolved] | Ryan Bates | 2008-05-20 | 1 | -2/+2 |
* | Calling ActiveRecord#inspect on an unloaded association won't wipe the collec... | Andreas Neuhaus | 2008-05-08 | 1 | -0/+6 |
* | Use schema.rb for all databases | Frederick Cheung | 2008-04-22 | 1 | -1/+1 |
* | Split associations_test.rb into multiple files based on association type. [Pr... | Pratik Naik | 2008-04-06 | 1 | -2382/+0 |
* | Ensure that save on parent object fails for invalid has_one association. Clos... | Pratik Naik | 2008-04-06 | 1 | -0/+12 |
* | Refactor HasManyThroughAssociation to inherit from HasManyAssociation. Associ... | Pratik Naik | 2008-04-06 | 1 | -3/+191 |
* | Ensure HABTM#create and HABTM#build do not load entire association. [Pratik] | Pratik Naik | 2008-04-05 | 1 | -13/+27 |
* | Add efficient #include? to AssociationCollection (for has_many/has_many :thro... | Rick Olson | 2008-04-01 | 1 | -0/+60 |
* | Partial updates include only unsaved attributes. Off by default; set YourClas... | Jeremy Kemper | 2008-03-31 | 1 | -1/+2 |
* | Fixed that has_many :through would ignore the hash conditions (closes #11447)... | David Heinemeier Hansson | 2008-03-28 | 1 | -0/+5 |