| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix for lighthouse #6741 | Nick Howard | 2011-05-01 | 1 | -3/+6 |
* | Extract the constraint-building for joins in JoinAssociation into a separate ... | Jon Leighton | 2011-04-14 | 1 | -8/+14 |
* | Remove `#among?` from Active Support | Prem Sichanugrist | 2011-04-13 | 5 | -5/+5 |
* | Removing the scope-caching which happens on association proxies, because the ... | Jon Leighton | 2011-04-12 | 2 | -14/+0 |
* | Change Object#either? to Object#among? -- thanks to @jamesarosen for the sugg... | David Heinemeier Hansson | 2011-04-12 | 5 | -5/+5 |
* | Using Object#in? and Object#either? in various places | Prem Sichanugrist | 2011-04-11 | 5 | -5/+14 |
* | TableAlias leg ordering has changed, so change accordingly | Aaron Patterson | 2011-03-30 | 1 | -1/+1 |
* | Make clearing of HABTM join table contents happen in an after_destory callback. | Murray Steele | 2011-03-23 | 1 | -12/+12 |
* | Merge branch 'master' into nested_has_many_through | Jon Leighton | 2011-03-16 | 1 | -1/+1 |
|\ |
|
| * | Add additional text to NotImplementedErrors [#6328 state:resolved] | Mike Gehard | 2011-03-12 | 1 | -1/+1 |
* | | Fix tests under postgres - we should always put conditions in the WHERE part ... | Jon Leighton | 2011-03-12 | 3 | -18/+22 |
* | | Resolve some TODO comments which I decided did not need anything done | Jon Leighton | 2011-03-12 | 2 | -8/+5 |
* | | Abstract some common code from AssociationScope and JoinDependency::JoinAssoc... | Jon Leighton | 2011-03-11 | 3 | -97/+82 |
* | | Refactor JoinAssociation | Jon Leighton | 2011-03-10 | 1 | -100/+54 |
* | | Rename Reflection#through_reflection_chain and #through_options to Reflection... | Jon Leighton | 2011-03-10 | 3 | -18/+15 |
* | | Move the code which builds a scope for through associations into a generic As... | Jon Leighton | 2011-03-10 | 7 | -209/+155 |
* | | Fix test_has_many_association_through_a_has_many_association_with_nonstandard... | Jon Leighton | 2011-03-07 | 1 | -1/+1 |
* | | Refactor ThroughAssociation#join_to to be much smaller, and independent of co... | Jon Leighton | 2011-03-06 | 1 | -84/+28 |
* | | Refactor ThroughAssociation#tables to just be a flat array of tables in the o... | Jon Leighton | 2011-03-06 | 1 | -75/+70 |
* | | Merge branch 'master' into nested_has_many_through | Jon Leighton | 2011-03-05 | 1 | -2/+2 |
|\| |
|
| * | Active Record typos. | R.T. Lechow | 2011-03-05 | 1 | -2/+2 |
| * | When preloading has_and_belongs_to_many associations, we should only instanti... | Jon Leighton | 2011-03-04 | 1 | -2/+4 |
| * | Fix a couple of tests in join_model_test.rb which were failing when the ident... | Jon Leighton | 2011-03-04 | 1 | -2/+2 |
* | | Use Base#type_condition in JoinAssociation | Jon Leighton | 2011-03-05 | 1 | -15/+4 |
* | | Push source_type and polymorphic conditions out of ThroughAssociation and Joi... | Jon Leighton | 2011-03-05 | 2 | -35/+0 |
* | | Add a test for STI on the through where the through is nested, and change the... | Jon Leighton | 2011-03-05 | 1 | -13/+22 |
* | | Stop identity-mapping the through records in the preloader since I fixed the ... | Jon Leighton | 2011-03-04 | 1 | -5/+0 |
* | | Fix a couple of tests in join_model_test.rb which were failing when the ident... | Jon Leighton | 2011-03-04 | 1 | -2/+2 |
* | | When preloading has_and_belongs_to_many associations, we should only instanti... | Jon Leighton | 2011-03-04 | 1 | -2/+4 |
* | | Merge branch 'master' into nested_has_many_through | Jon Leighton | 2011-03-04 | 1 | -0/+5 |
|\| |
|
* | | Merge branch 'master' into nested_has_many_through | Jon Leighton | 2011-03-04 | 42 | -2259/+3173 |
|\| |
|
| * | Move JoinDependency and friends from ActiveRecord::Associations::ClassMethods... | Jon Leighton | 2011-02-28 | 8 | -620/+612 |
| * | Rewrote AssociationPreload. | Jon Leighton | 2011-02-28 | 11 | -0/+553 |
| * | Use proper objects to do the work to build the associations (adding methods, ... | Jon Leighton | 2011-02-21 | 11 | -4/+501 |
| * | Rename target_klass to klass | Jon Leighton | 2011-02-21 | 3 | -10/+10 |
| * | Delegate through_reflection and source_reflection to reflection | Jon Leighton | 2011-02-21 | 3 | -34/+34 |
| * | Delegate Association#options to the reflection, and replace 'reflection.optio... | Jon Leighton | 2011-02-21 | 7 | -47/+49 |
| * | Singular associations no longer use a proxy, so no need to check for the prox... | Jon Leighton | 2011-02-21 | 3 | -8/+2 |
| * | Associations - where possible, call attributes methods rather than directly a... | Jon Leighton | 2011-02-21 | 11 | -179/+179 |
| * | Initialize @target instead asking if it is defined. | Emilio Tagua | 2011-02-18 | 1 | -1/+2 |
| * | Reindent and remove wrong line left in merge by mistake. | Emilio Tagua | 2011-02-18 | 1 | -4/+3 |
| * | Merge remote branch 'rails/master' into identity_map | Emilio Tagua | 2011-02-18 | 11 | -473/+527 |
| |\ |
|
| | * | Split AssociationProxy into an Association class (and subclasses) which manag... | Jon Leighton | 2011-02-18 | 9 | -276/+287 |
| | * | Add :nodoc: to ThroughAssociation and HasOneAssociation | Jon Leighton | 2011-02-18 | 2 | -2/+2 |
| | * | Allow building and then later saving has_many :through records, such that the... | Jon Leighton | 2011-02-18 | 1 | -4/+46 |
| * | | Don't shadow outer local variable. | Emilio Tagua | 2011-02-15 | 1 | -2/+2 |
| * | | Merge remote branch 'rails/master' into identity_map | Emilio Tagua | 2011-02-15 | 14 | -1044/+873 |
| |\| |
|
| | * | Add a transaction wrapper in add_to_target. This means that #build will now a... | Jon Leighton | 2011-02-14 | 1 | -27/+27 |
| | * | Inline ensure_owner_is_persisted! as it is only called from one place | Jon Leighton | 2011-02-14 | 1 | -8/+4 |
| | * | @target should always be an array | Jon Leighton | 2011-02-14 | 1 | -1/+2 |