| Commit message (Expand) | Author | Age | Files | Lines |
* | @target is always a list, so stop doing is_a? checks | Aaron Patterson | 2011-01-14 | 1 | -1/+1 |
* | move complex logic to it's own method | Aaron Patterson | 2011-01-14 | 1 | -15/+19 |
* | loaded? will not raise an AR::RecordNotFound exception, so move the rescue in... | Aaron Patterson | 2011-01-14 | 1 | -4/+4 |
* | reduce funcalls by using falsey objects | Aaron Patterson | 2011-01-14 | 1 | -2/+2 |
* | write the delegate method directly to avoid `delegate` callstack overhead | Aaron Patterson | 2011-01-14 | 1 | -1/+5 |
* | reduce some lasigns | Aaron Patterson | 2011-01-14 | 1 | -2/+1 |
* | include_in_memory? should check against @target list in case of new records. ... | Aaron Patterson | 2011-01-12 | 1 | -2/+2 |
* | use array maths rather than *args | Aaron Patterson | 2011-01-12 | 1 | -2/+4 |
* | just use return value of load_target | Aaron Patterson | 2011-01-12 | 1 | -2/+1 |
* | just call methods on return value of `load_target` | Aaron Patterson | 2011-01-12 | 1 | -8/+3 |
* | default return value is nil | Aaron Patterson | 2011-01-12 | 1 | -1/+0 |
* | @loaded is defined in initialize, so we should not need this | Aaron Patterson | 2011-01-12 | 1 | -2/+0 |
* | just use respond_to? and super rather than aliasing around methods | Aaron Patterson | 2011-01-12 | 2 | -5/+4 |
* | adding a test for no method error | Aaron Patterson | 2011-01-11 | 1 | -11/+5 |
* | test_with_polymorphic_and_condition works without the conditions methods in B... | Jon Leighton | 2011-01-11 | 1 | -5/+0 |
* | Support for create_association! for has_one associations | Jon Leighton | 2011-01-11 | 1 | -1/+4 |
* | Get rid of set_association_target and association_loaded? as the parts of the... | Jon Leighton | 2011-01-11 | 2 | -2/+4 |
* | We can use the association_proxy method directly in HasOneThroughAssociation now | Jon Leighton | 2011-01-11 | 2 | -20/+20 |
* | find_target can be inherited | Jon Leighton | 2011-01-11 | 1 | -4/+0 |
* | Raise ActiveRecord::RecordNotSaved if an AssociationCollection fails to be re... | Jon Leighton | 2011-01-11 | 1 | -1/+5 |
* | When assigning a has_one, if anything fails, the assignment should be rolled ... | Jon Leighton | 2011-01-11 | 1 | -19/+23 |
* | When assigning a has_one, if the new record fails to save, raise an error | Jon Leighton | 2011-01-11 | 1 | -3/+3 |
* | When assigning a has_one, if the existing record fails to be removed from the... | Jon Leighton | 2011-01-11 | 1 | -5/+11 |
* | has_one should always remove the old record (properly), even if not saving th... | Jon Leighton | 2011-01-11 | 1 | -1/+1 |
* | Fix polymorphic belongs_to associationproxy raising errors when loading target. | Ernie Miller | 2011-01-11 | 1 | -0/+5 |
* | Refactor HasOneAssociation#replace | Jon Leighton | 2011-01-07 | 1 | -26/+22 |
* | Don't not remove double negatives | Jon Leighton | 2011-01-07 | 1 | -4/+4 |
* | Clean up create, create! and build in HasOneAssociation | Jon Leighton | 2011-01-07 | 1 | -14/+8 |
* | merge_with_conditions is not necessary because the conditions will already be... | Jon Leighton | 2011-01-07 | 1 | -9/+0 |
* | Not really worth having the HasAssociation module for just a single method | Jon Leighton | 2011-01-07 | 4 | -20/+9 |
* | Construct an actual ActiveRecord::Relation object for the association scope, ... | Jon Leighton | 2011-01-07 | 8 | -113/+72 |
* | just use a hash for doing association caching | Aaron Patterson | 2011-01-07 | 1 | -2/+2 |
* | no need to send a symbol to send() | Aaron Patterson | 2011-01-05 | 1 | -1/+1 |
* | avoid creating so many Arel::Table objects | Aaron Patterson | 2011-01-05 | 1 | -6/+9 |
* | use attr_reader and alias methods to access instance variables | Aaron Patterson | 2011-01-05 | 1 | -8/+4 |
* | we have a method for this, so let's use it | Aaron Patterson | 2011-01-05 | 1 | -2/+2 |
* | use arel ast construction rather than generating strings | Aaron Patterson | 2011-01-05 | 1 | -1/+7 |
* | use arel to construct AST rather than generate strings | Aaron Patterson | 2011-01-05 | 1 | -2/+3 |
* | Explicitly select * from has_and_belongs_to_many association tables, simplify... | Raimonds Simanovskis | 2011-01-04 | 1 | -1/+2 |
* | Remove undocumented feature from has_one where you could pass false as the se... | Jon Leighton | 2011-01-03 | 1 | -20/+8 |
* | When preloading a belongs_to, the target should still be set (to nil) if ther... | Jon Leighton | 2011-01-03 | 1 | -3/+1 |
* | Create the association scope directly rather than going through with_scope | Jon Leighton | 2011-01-03 | 7 | -31/+32 |
* | Use the association directly in other places too | Jon Leighton | 2011-01-03 | 3 | -20/+13 |
* | Let AssociationCollection#find use #scoped to do its finding. Note that I am ... | Jon Leighton | 2011-01-03 | 6 | -97/+66 |
* | Rename AssociationProxy#foreign_key_present to foreign_key_present? | Jon Leighton | 2011-01-03 | 4 | -7/+7 |
* | Allow assignment on has_one :through where the owner is a new record [#5137 s... | Jon Leighton | 2011-01-03 | 7 | -51/+39 |
* | Have a proper AssociationReflection#foreign_type method rather than using opt... | Jon Leighton | 2011-01-03 | 3 | -6/+6 |
* | Rename AssociationReflection#primary_key_name to foreign_key, since the optio... | Jon Leighton | 2010-12-31 | 9 | -26/+26 |
* | Support for :counter_cache on polymorphic belongs_to | Jon Leighton | 2010-12-31 | 1 | -1/+1 |
* | Refactor BelongsToAssociation to allow BelongsToPolymorphicAssociation to inh... | Jon Leighton | 2010-12-31 | 5 | -114/+91 |