aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations/association_proxy.rb
Commit message (Expand)AuthorAgeFilesLines
* Construct an actual ActiveRecord::Relation object for the association scope, ...Jon Leighton2011-01-071-16/+42
* use attr_reader and alias methods to access instance variablesAaron Patterson2011-01-051-8/+4
* Create the association scope directly rather than going through with_scopeJon Leighton2011-01-031-16/+20
* Let AssociationCollection#find use #scoped to do its finding. Note that I am ...Jon Leighton2011-01-031-14/+0
* Rename AssociationProxy#foreign_key_present to foreign_key_present?Jon Leighton2011-01-031-2/+2
* Allow assignment on has_one :through where the owner is a new record [#5137 s...Jon Leighton2011-01-031-9/+22
* Refactor BelongsToAssociation to allow BelongsToPolymorphicAssociation to inh...Jon Leighton2010-12-311-8/+23
* And owner_quoted_id can go tooJon Leighton2010-12-311-5/+0
* Refactor we_can_set_the_inverse_on_this? to use a less bizarre name amongst o...Jon Leighton2010-12-261-9/+15
* Add a HasAssociation module for common code for has_* associationsJon Leighton2010-12-261-54/+5
* Remove AssociationProxy#dependent? - it's badly named and only used in one placeJon Leighton2010-12-261-5/+0
* Associations: DRY up the code which is generating conditions, and make it all...Jon Leighton2010-12-261-9/+36
* Improved strategy for updating a belongs_to association when the foreign key ...Jon Leighton2010-12-231-0/+10
* Partialy revert f1c13b0dd7b22b5f6289ca1a09f1d7a8c7c8584bJosé Valim2010-11-281-1/+1
* removing space errorsAaron Patterson2010-11-161-2/+2
* use persisted? instead of new_record? wherever possibleDavid Chelimsky2010-11-091-3/+3
* Association Proxy should not undefine the default respond_to_missingsblackstone2010-11-041-1/+1
* Refactoring: replace the mix of variables like @finder_sql, @counter_sql, etc...Jon Leighton2010-10-301-0/+19
* Adds title to activerecord/lib/active_record/associations/*Rizwan Reza2010-06-161-0/+2
* Revert "removing the extra \"Neeraj Singh2010-06-151-1/+1
* removing the extra \Neeraj Singh2010-06-151-1/+1
* Prevent calling regexp on symbol in Ruby 1.9 in association_proxyErnie Miller2010-05-051-1/+1
* Avoid deprecated String#to_a by using Array.wrap(...) instead of Array(...)Jeremy Kemper2010-04-101-1/+3
* fisting uninitialized ivar warnings. [#4198 state:resolved]Aaron Patterson2010-03-161-0/+1
* keep AssociationProxy#to_a to avoid warning in Array(post.author), and delega...Xavier Noria2010-03-121-1/+1
* Make sure association proxy does not pass quoted table name to sanitize_sqlPratik Naik2010-01-011-1/+1
* Revert "Fix instance_eval calls to association proxies"Joshua Peek2009-12-121-2/+6
* Fix instance_eval calls to association proxiesMat Brown2009-12-021-6/+2
* Ruby 1.9.2: use recursive flattenJeremy Kemper2009-11-141-7/+1
* Ruby 1.9.2: fix flatten_deeper to preserve nilsJeremy Kemper2009-11-141-1/+1
* Ruby 1.9.2: avoid #flattenJeremy Kemper2009-11-131-4/+16
* Remove unused quoted_record_ids, now ARel does this using ARel::In.Emilio Tagua2009-08-181-9/+0
* Providing support for :inverse_of as an option to associations.Murray Steele2009-05-041-0/+14
* Ensure JoinAssociation uses aliased table name when multiple associations hav...Pratik Naik2009-04-201-2/+2
* Fix HasManyAssociation#create ignoring the :primary_key option [#1633 state:r...Roman Shterenzon2009-01-011-1/+4
* Make NoMethodError message more descriptive when an undefined message has bee...Mike Ferrier2008-12-041-1/+4
* Add :having option to find, to use in combination with grouped finds. Also ad...miloops2008-12-011-0/+1
* Ensure methods called on association proxies respect access control. [#1083 s...Pratik Naik2008-10-131-0/+11
* Try reloading model on class mismatch [#229 state:resolved]Lawrence Pit2008-10-041-1/+1
* Merge docrailsPratik Naik2008-09-031-10/+47
* respond_to? passes along splat args to avoid introducing the second arg if it...Jeremy Kemper2008-08-271-2/+2
* Ruby 1.9 compat: Hash is now flattenable, so explicitly exclude itJeremy Kemper2008-08-231-1/+1
* Updated has_and_belongs_to_many association to fix :finder_sql interpolation....Nathan Witmer2008-08-161-4/+0
* Cache sanitized conditions in reflection object for associationsPratik Naik2008-06-271-1/+1
* Extract owner_quoted_id so it can be overridden. [#292 state:committed]Andre Arko2008-06-251-0/+4
* Verbose ActiveRecord::AssociationTypeMismatch exception message. [#189 state:...Pratik Naik2008-05-211-1/+2
* - Updated tzinfo to use Rational() instead of Rational.new! due to "private m...Nate Wiger2008-05-191-1/+1
* Calling ActiveRecord#inspect on an unloaded association won't wipe the collec...Andreas Neuhaus2008-05-081-2/+2
* Improve documentation coverage and markupXavier Noria2008-05-021-0/+10
* Refactor HasManyThroughAssociation to inherit from HasManyAssociation. Associ...Pratik Naik2008-04-061-3/+3