index
:
rails.git
3-2-stable-for-hmno
master
Mirror of official rails repo with custom fixes.
Harald Eilertsen
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
activerecord
/
lib
/
active_record
/
reflection.rb
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix problem with loading polymorphic associations which have been defined in ...
Jon Leighton
2011-05-22
1
-5
/
+4
*
Remove `#among?` from Active Support
Prem Sichanugrist
2011-04-13
1
-1
/
+1
*
Change Object#either? to Object#among? -- thanks to @jamesarosen for the sugg...
David Heinemeier Hansson
2011-04-12
1
-1
/
+1
*
Using Object#in? and Object#either? in various places
Prem Sichanugrist
2011-04-11
1
-1
/
+2
*
Simplify implementation of ThroughReflection#chain
Jon Leighton
2011-03-11
1
-22
/
+2
*
Rename Reflection#through_reflection_chain and #through_options to Reflection...
Jon Leighton
2011-03-10
1
-27
/
+33
*
Move the code which builds a scope for through associations into a generic As...
Jon Leighton
2011-03-10
1
-3
/
+3
*
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
-0
/
+6
*
Push source_type and polymorphic conditions out of ThroughAssociation and Joi...
Jon Leighton
2011-03-05
1
-10
/
+11
*
Add a test for STI on the through where the through is nested, and change the...
Jon Leighton
2011-03-05
1
-0
/
+3
*
Merge branch 'master' into nested_has_many_through
Jon Leighton
2011-03-04
1
-18
/
+65
|
\
|
*
Rewrote AssociationPreload.
Jon Leighton
2011-02-28
1
-4
/
+6
|
*
Delegate Association#options to the reflection, and replace 'reflection.optio...
Jon Leighton
2011-02-21
1
-0
/
+8
|
*
Split AssociationProxy into an Association class (and subclasses) which manag...
Jon Leighton
2011-02-18
1
-1
/
+1
|
*
Ensure that association_ids uses the correct attribute where the association ...
Jon Leighton
2011-02-18
1
-0
/
+4
|
*
DRY up the code which instantiates the association proxy
Jon Leighton
2011-01-11
1
-0
/
+25
|
*
Implement deprecated version of AssociationReflection#primary_key_name, which...
Jon Leighton
2011-01-03
1
-0
/
+6
|
*
Have a proper AssociationReflection#foreign_type method rather than using opt...
Jon Leighton
2011-01-03
1
-0
/
+4
|
*
Rename AssociationReflection#primary_key_name to foreign_key, since the optio...
Jon Leighton
2010-12-31
1
-7
/
+7
|
*
Now we can drop-kick AssociationReflection#dependent_conditions into oblivion.
Jon Leighton
2010-12-31
1
-11
/
+0
|
*
Raise an error for associations which try to go :through a polymorphic associ...
Jon Leighton
2010-12-23
1
-1
/
+5
|
*
Improved strategy for updating a belongs_to association when the foreign key ...
Jon Leighton
2010-12-23
1
-1
/
+4
|
*
Don't allow a has_one association to go :through a collection association [#2...
Jon Leighton
2010-12-23
1
-0
/
+4
|
*
Fix problem where wrong keys are used in JoinAssociation when an association ...
Jon Leighton
2010-12-20
1
-0
/
+4
|
*
Fix various issues with the :primary_key option in :through associations [#24...
Jon Leighton
2010-12-15
1
-1
/
+5
|
*
reduce method calls
Aaron Patterson
2010-12-16
1
-1
/
+1
*
|
Merge branch 'master' into nested_has_many_through
Jon Leighton
2010-12-12
1
-1
/
+1
|
\
\
|
*
|
reduce method calls
Aaron Patterson
2010-12-10
1
-1
/
+1
|
|
/
*
|
Merge branch 'master' into nested_has_many_through
Jon Leighton
2010-11-27
1
-11
/
+9
|
\
|
|
*
class inheritable attributes is used no more! all internal use of class inher...
Josh Kalderimis
2010-11-20
1
-11
/
+9
*
|
Fix naughty trailing whitespace
Jon Leighton
2010-10-31
1
-21
/
+21
*
|
Merge branch 'master' into nested_has_many_through
Jon Leighton
2010-10-28
1
-2
/
+2
|
\
|
|
*
use grep instead of select + is_a?
Aaron Patterson
2010-10-20
1
-2
/
+2
*
|
Add some comments for ThroughReflection#through_reflection_chain
Jon Leighton
2010-10-19
1
-1
/
+10
*
|
Remove various comments and code which were just being used during the develo...
Jon Leighton
2010-10-19
1
-24
/
+0
*
|
Add explicit tests for the nested through association changes in reflection.rb
Jon Leighton
2010-10-19
1
-2
/
+13
*
|
Bugfix/refactoring
Jon Leighton
2010-10-19
1
-0
/
+9
*
|
Remove unused methods
Jon Leighton
2010-10-19
1
-11
/
+0
*
|
Support for :primary_key option on the source reflection of a through associa...
Jon Leighton
2010-10-19
1
-0
/
+8
*
|
Properly support conditions on any of the reflections involved in a nested th...
Jon Leighton
2010-10-19
1
-3
/
+50
*
|
Make sure nested through associations are read only
Jon Leighton
2010-10-15
1
-0
/
+4
*
|
Integrate nested support into ThroughAssociationScope, using my concept of ge...
Jon Leighton
2010-10-02
1
-10
/
+40
*
|
Started implementing nested :through associations by using the existing struc...
Jon Leighton
2010-10-01
1
-0
/
+15
*
|
Initial nested_has_many_through support [#1152]
Bodaniel Jeanes
2010-09-26
1
-3
/
+3
|
/
*
Deletes trailing whitespaces (over text files only find * -type f -exec sed '...
Santiago Pastorino
2010-08-14
1
-13
/
+13
*
applied guidelines to "# =>"
Paco Guzman
2010-08-12
1
-1
/
+1
*
Tidy up previous commit.
José Valim
2010-08-02
1
-14
/
+12
*
returns not returned . fixing documentation for reflection
Neeraj Singh
2010-07-30
1
-28
/
+30
*
bringing consistency in comments
Neeraj Singh
2010-07-24
1
-14
/
+17
[next]