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
*
Refactor to use each_key, remove extra spaces
Carlos Antonio da Silva
2013-01-28
1
-1
/
+0
*
Added STI support to init and building associations
Jason Rush
2012-11-29
1
-1
/
+1
*
Another batch of hash syntax changes to comment, this time around, I tried to...
AvnerCohen
2012-10-23
1
-12
/
+12
*
Remove mass_assignment_options from ActiveRecord
Guillermo Iguaran
2012-09-16
1
-2
/
+2
*
Refactor to remove some duplication
Jon Leighton
2012-09-12
1
-0
/
+4
*
load active_support/core_ext/class/attribute in active_support/rails
Xavier Noria
2012-08-02
1
-1
/
+0
*
load active_support/core_ext/object/inclusion in active_support/rails
Xavier Noria
2012-08-02
1
-1
/
+0
*
Revert "Removing composed_of from ActiveRecord."
Rafael Mendonça França
2012-07-27
1
-5
/
+40
*
remove unused method
Jon Leighton
2012-07-20
1
-4
/
+0
*
Represent association scope options as AR::Relations insternally.
Jon Leighton
2012-07-13
1
-19
/
+15
*
Allow associations to take a lambda which builds the scope
Jon Leighton
2012-07-13
1
-4
/
+7
*
Improve the derivation of HABTM assocation join table names
Andrew White
2012-06-22
1
-0
/
+16
*
Removing composed_of from ActiveRecord.
Steve Klabnik
2012-06-18
1
-40
/
+5
*
Simplify AR configuration code.
Jon Leighton
2012-06-15
1
-2
/
+1
*
de-globalise method
Jon Leighton
2012-05-04
1
-0
/
+4
*
Refactor and cleanup in some ActiveRecord modules
Carlos Antonio da Silva
2012-03-03
1
-9
/
+9
*
Remove useless argument in #columns.
Sebastian Martinez
2012-02-02
1
-2
/
+2
*
no need for extra method calls inside the framework
Aaron Patterson
2012-01-09
1
-1
/
+1
*
Support configuration on ActiveRecord::Model.
Jon Leighton
2011-12-28
1
-1
/
+2
*
Merge branch 'master' of github.com:lifo/docrails
Vijay Dev
2011-12-16
1
-1
/
+1
|
\
|
*
Update activerecord/lib/active_record/reflection.rb
Alexander
2011-12-14
1
-1
/
+1
*
|
Don't try to autosave nested assocs. Fixes #2961.
Jon Leighton
2011-12-14
1
-0
/
+4
|
/
*
Allow the :class_name option for associations to take a symbol.
Jon Leighton
2011-11-04
1
-1
/
+1
*
Fix #3271.
Jon Leighton
2011-11-03
1
-1
/
+1
*
Raise an exception on unknown primary key inside AssociationReflection.
Jon Leighton
2011-10-05
1
-4
/
+8
*
Don't call self.class unless necessary. Closes #3171.
Jon Leighton
2011-09-29
1
-2
/
+2
*
Fix belongs_to polymorphic with custom primary key on target.
Jon Leighton
2011-09-26
1
-15
/
+11
*
Ensure we are not comparing a string with a symbol in HasManyAssociation#inve...
Jon Leighton
2011-09-06
1
-1
/
+1
*
calling super is super. if the other object is exactly equal, we can return e...
Aaron Patterson
2011-07-01
1
-1
/
+5
*
Remove AssociationReflection#create_association and AssociationReflection#cre...
Jon Leighton
2011-06-30
1
-17
/
+0
*
Assign the association attributes to the associated record before the before_...
Jon Leighton
2011-06-30
1
-2
/
+2
*
cache the plural name on the reflection so we do not pay pluralize costs on j...
Aaron Patterson
2011-06-30
1
-6
/
+13
*
Merge branch 'master' of github.com:rails/rails
Xavier Noria
2011-05-25
1
-6
/
+0
|
\
|
*
removed deprecated methods, and related tests, from ActiveRecord
Josh Kalderimis
2011-05-25
1
-6
/
+0
*
|
Merge branch 'master' of git://github.com/lifo/docrails
Xavier Noria
2011-05-25
1
-1
/
+1
|
\
\
|
|
/
|
/
|
|
*
Remove extra white spaces on ActiveRecord docs.
Sebastian Martinez
2011-05-23
1
-1
/
+1
*
|
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
[next]