aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations/collection_proxy.rb
Commit message (Collapse)AuthorAgeFilesLines
...
* fix typo in collection proxyAccessd2012-07-311-1/+1
|
* Deprecate ActiveRecord::Base.scoped.Jon Leighton2012-07-271-5/+1
| | | | | | | It doesn't serve much purpose now that ActiveRecord::Base.all returns a Relation. The code is moved to active_record_deprecated_finders.
* Merge branch 'master' of github.com:lifo/docrailsVijay Dev2012-05-301-1/+1
|\
| * change example on CollectionProxy#delete to accept multiple valuesFrancesco Rodriguez2012-05-281-1/+1
| |
* | Add support for CollectionAssociation#delete by Fixnum or StringFrancesco Rodriguez2012-05-281-0/+26
|/ | | | | | | | | | | | | | | | | | | | | | | | I found the next issue between CollectionAssociation `delete` and `destroy`. class Person < ActiveRecord::Base has_many :pets end person.pets.destroy(1) # => OK, returns the destroyed object person.pets.destroy("2") # => OK, returns the destroyed object person.pets.delete(1) # => ActiveRecord::AssociationTypeMismatch person.pets.delete("2") # => ActiveRecord::AssociationTypeMismatch Adding support for deleting with a fixnum or string like `destroy` method.
* add CollectionProxy#uniq documentationFrancesco Rodriguez2012-05-261-0/+21
|
* add :nodoc: to CollectionProxy#initializeFrancesco Rodriguez2012-05-251-1/+1
|
* add CollectionProxy#== documentationFrancesco Rodriguez2012-05-251-0/+24
|
* add CollectionProxy#count documentationFrancesco Rodriguez2012-05-251-0/+26
|
* add CollectionProxy#to_ary documentationFrancesco Rodriguez2012-05-251-2/+35
|
* add CollectionProxy#delete documentationFrancesco Rodriguez2012-05-251-1/+104
|
* copy edits in collection proxy docs [ci skip]Vijay Dev2012-05-231-25/+18
|
* add CollectionProxy#length documentationFrancesco Rodriguez2012-05-221-5/+37
|
* add CollectionProxy#size documentationFrancesco Rodriguez2012-05-221-2/+25
|
* add :call-seq: to +first+ and +last+ CollectionProxy methodsFrancesco Rodriguez2012-05-221-0/+6
|
* add CollectionProxy#create! documentationFrancesco Rodriguez2012-05-221-0/+22
|
* add CollectionProxy#create documentationFrancesco Rodriguez2012-05-221-0/+33
|
* add more examples to CollectionProxy#findFrancesco Rodriguez2012-05-221-0/+9
|
* adding :call-seq: to CollectionProxy methodsFrancesco Rodriguez2012-05-221-0/+39
|
* add CollectionProxy#build documentationFrancesco Rodriguez2012-05-221-0/+31
|
* remove repeated documentation in CollectionProxy#clearFrancesco Rodriguez2012-05-221-24/+2
|
* update CollectionProxy#clear documentationFrancesco Rodriguez2012-05-211-3/+2
|
* update CollectionProxy#delete_all documentationFrancesco Rodriguez2012-05-211-2/+29
|
* add CollectionProxy#delete_all documentationFrancesco Rodriguez2012-05-211-0/+65
|
* fix CollectionProxy documentation markupFrancesco Rodriguez2012-05-211-8/+8
|
* add CollectionProxy#reload documentationFrancesco Rodriguez2012-05-211-0/+18
|
* improve CollectionProxy#destroy documentationFrancesco Rodriguez2012-05-211-5/+37
|
* add CollectionProxy#destroy documentationFrancesco Rodriguez2012-05-211-1/+42
|
* update CollectionProxy#destroy_all documentationFrancesco Rodriguez2012-05-201-1/+9
|
* add CollectionProxy#select documentationFrancesco Rodriguez2012-05-191-2/+55
|
* add CollectionProxy#find documentationFrancesco Rodriguez2012-05-191-0/+20
|
* copy edits [ci skip]Vijay Dev2012-05-191-17/+20
|
* add CollectionProxy#last documentationFrancesco Rodriguez2012-05-191-0/+27
|
* add CollectionProxy#first documentationFrancesco Rodriguez2012-05-191-0/+27
|
* improve CollectionProxy#concat documentationFrancesco Rodriguez2012-05-191-7/+18
|
* fix CollectionProxy#<< documentationFrancesco Rodriguez2012-05-191-1/+1
|
* add CollectionProxy#<< documentationFrancesco Rodriguez2012-05-191-0/+20
|
* add CollectionProxy#clear documentationFrancesco Rodriguez2012-05-191-0/+26
|
* add CollectionProxy#include? documentationFrancesco Rodriguez2012-05-181-0/+13
|
* move docs from CollectionAssociation to CollectionProxyFrancesco Rodriguez2012-05-181-1/+142
|
* Remove #=== quirkJon Leighton2012-05-111-6/+0
| | | | Makes it consistent with Relation. Can't see a use for this.
* this stuff can all be handled by RelationJon Leighton2012-05-111-38/+0
|
* extract deprecated codeJon Leighton2012-05-111-8/+1
|
* set_owner_attributes is covered by the scopingJon Leighton2012-05-111-4/+3
|
* CollectionProxy < RelationJon Leighton2012-05-111-15/+22
| | | | | | | | | | | | | | | | | | | | | This helps bring the interfaces of CollectionProxy and Relation closer together, and reduces the delegation backflips we need to perform. For example, first_or_create is defined thus: class ActiveRecord::Relation def first_or_create(...) first || create(...) end end If CollectionProxy < Relation, then post.comments.first_or_create will hit the association's #create method which will actually add the new record to the association, just as post.comments.create would. With the previous delegation, post.comments.first_or_create expands to post.comments.scoped.first_or_create, where post.comments.scoped has no knowledge of the association.
* extract code from AR::BaseJon Leighton2012-05-041-1/+1
|
* clean up implementation of dynamic methods. use method compilation etc.Jon Leighton2012-05-041-3/+3
|
* Fix issue with private kernel methods and collection associations. Closes #2508Carlos Antonio da Silva2012-05-021-2/+2
| | | | | | | | Change CollectionProxy#method_missing to use scoped.public_send, to avoid a problem described in issue #2508 when trying to use class methods with names like "open", that clash with private kernel methods. Also changed the dynamic matcher instantiator to send straight to scoped, to avoid another roundtrip to method_missing.
* allow AssociationProxy#scoped to take options so that API is the same as ↵Jon Leighton2012-04-271-2/+6
| | | | Base#scoped
* Define array methods in ActiveRecord::Associations::CollectionProxyJorge Bejar2012-04-181-0/+13
| | | | | | if they are not defined or delegated. In this way, we have a performance boost invoking some array methods which are not defined in CollectionAssociation.