| Commit message (Expand) | Author | Age | Files | Lines |
* | Merge pull request #3030 from htanata/fix_habtm_select_query_method | Jon Leighton | 2011-09-26 | 2 | -0/+16 |
* | Fix belongs_to polymorphic with custom primary key on target. | Jon Leighton | 2011-09-26 | 1 | -0/+8 |
* | CollectionProxy#replace should change the DB records rather than just mutatin... | Jon Leighton | 2011-09-26 | 1 | -0/+11 |
* | Don't include any of includes, preload, joins, eager_load in the through asso... | Jon Leighton | 2011-09-07 | 1 | -3/+5 |
* | Nested through associations: preloads from the default scope of a through mod... | Jon Leighton | 2011-09-06 | 1 | -0/+9 |
* | Ensure we are not comparing a string with a symbol in HasManyAssociation#inve... | Jon Leighton | 2011-09-06 | 1 | -0/+10 |
* | Disable active record marshalling tests on Ruby 1.8.7 on Travis CI, as they h... | Jon Leighton | 2011-09-06 | 1 | -0/+10 |
* | Don't find belongs_to target when the foreign_key is NULL. Fixes #2828 | Georg Friedrich | 2011-09-05 | 1 | -0/+6 |
* | The join_nodes must be passed to the JoinDependency initializer and therefore... | Jon Leighton | 2011-08-29 | 1 | -0/+4 |
* | Ensure empty has_many :through association preloaded via joins is marked as l... | Jon Leighton | 2011-08-15 | 1 | -0/+8 |
* | Work around for lolruby bug. (Read on for explanation.) | Jon Leighton | 2011-08-13 | 1 | -2/+6 |
* | Fix test for Rubinius | Santiago Pastorino | 2011-08-05 | 1 | -1/+1 |
* | ActiveRecord: Fix eager loading so that giving a blank order clause generates... | Elliot Winkler | 2011-07-18 | 1 | -0/+12 |
* | Fix exception if old and new targets are both nil. Fixes #1471. | Jon Leighton | 2011-07-12 | 1 | -0/+9 |
* | Foo.joins(:bar).includes(:bar) should result in a single query with :bar as a... | Jon Leighton | 2011-07-09 | 1 | -0/+8 |
* | Ensure that the foreign key gets set when doing record.create_association or ... | Jon Leighton | 2011-07-08 | 1 | -0/+14 |
* | Fix bug in collection_singular_ids on has many through association with condi... | Anatoliy Lysenko | 2011-07-06 | 1 | -0/+5 |
* | Merge pull request #1968 from bogdan/associations_find_array_compatibility2 | Santiago Pastorino | 2011-07-05 | 1 | -0/+4 |
|\ |
|
| * | Fixed CollectionAssociation#find to be compatible with Array#find | Bogdan Gusiev | 2011-07-05 | 1 | -0/+4 |
* | | Only call set_owner_attributes for has_one association if target exists. | Dieter Komendera | 2011-07-04 | 1 | -0/+11 |
|/ |
|
* | Assign the association attributes to the associated record before the before_... | Jon Leighton | 2011-06-30 | 2 | -0/+14 |
* | Make assert_no_queries literally enforce that there are no queries. As in, no... | Jon Leighton | 2011-06-12 | 1 | -15/+0 |
* | Refactor tests to be less brittle | Jon Leighton | 2011-06-12 | 1 | -25/+58 |
* | Don't wrap operations on collection associations in transactions when they ar... | benedikt | 2011-06-12 | 1 | -0/+45 |
* | Do not hardcode :id as it was ignored by mass assignment filter | Raimonds Simanovskis | 2011-06-08 | 1 | -2/+2 |
* | Allow polymorphic has_one to work when the association is set before the owne... | Jon Leighton | 2011-06-08 | 1 | -0/+11 |
* | When you add a record to a polymorphic has_one, you should be able to access ... | Jon Leighton | 2011-06-08 | 1 | -1/+4 |
* | Merge pull request #1474 from ganeshkumar/update_column_changes | José Valim | 2011-06-07 | 1 | -0/+9 |
|\ |
|
| * | added more tests for update_column | ganesh | 2011-06-04 | 1 | -0/+9 |
* | | please use ruby -I lib:test path/to/test.rb, or export RUBY_OPT | Aaron Patterson | 2011-06-06 | 19 | -19/+19 |
* | | Refactor Active Record test connection setup. Please see the RUNNING_UNIT_TES... | Jon Leighton | 2011-06-04 | 19 | -20/+20 |
|/ |
|
* | added an alias for new to build to the AR collection proxy, this corrects an ... | Josh Kalderimis | 2011-06-01 | 2 | -0/+25 |
* | Tests for issue #1360 | Farley Knight | 2011-05-31 | 1 | -0/+9 |
* | Opening class CascadedEagerLoadingTest at once. | Arun Agrawal | 2011-05-31 | 1 | -7/+3 |
* | fixing test for mysql2 | Aaron Patterson | 2011-05-27 | 1 | -5/+2 |
* | adding a test for #1322 | Aaron Patterson | 2011-05-26 | 1 | -0/+15 |
* | Merge pull request #1323 from fx/association_primary_key | Jon Leighton | 2011-05-26 | 1 | -0/+10 |
|\ |
|
| * | added assertion for non-standard primary_key on models used in the primary_ke... | Marian Rudzynski | 2011-05-26 | 1 | -0/+3 |
| * | use association_primary_key in AssociationScope#add_constraints | Marian Rudzynski | 2011-05-26 | 1 | -0/+7 |
* | | Removes a now needless test - via Github | Mohammad Typaldos | 2011-05-26 | 1 | -8/+0 |
* | | Removes the restriction on primary key when joining in a habtm && test that i... | Mohammad El-Abid | 2011-05-26 | 1 | -5/+4 |
|/ |
|
* | removed deprecated methods, and related tests, from ActiveRecord | Josh Kalderimis | 2011-05-25 | 1 | -9/+0 |
* | Merge pull request #1254 from pixeltrix/ignore-includes-in-through-scope | Jon Leighton | 2011-05-24 | 1 | -0/+6 |
|\ |
|
| * | Ignore :includes on through associations | Andrew White | 2011-05-24 | 1 | -0/+6 |
* | | Failing tests for #1233. | Andrew White | 2011-05-24 | 1 | -0/+40 |
* | | add tests surrounding behavior of save and save! for associations that have v... | Aaron Patterson | 2011-05-24 | 1 | -0/+26 |
* | | adding a test for create! with invalid associations | Aaron Patterson | 2011-05-24 | 1 | -0/+9 |
* | | do not bother with assert_nothing_raised, the test will fail and we get a bet... | Aaron Patterson | 2011-05-24 | 1 | -3/+1 |
* | | Add failing test case for issue 796 | Joey Butler | 2011-05-24 | 1 | -0/+9 |
|/ |
|
* | Fix problem with loading polymorphic associations which have been defined in ... | Jon Leighton | 2011-05-22 | 1 | -0/+7 |