module Gifted::Monkey::ActiveRecord::Associations::CollectionProxy

Public Instance Methods

last(*) click to toggle source
Calls superclass method
# File lib/gifted/monkey/active_record/associations.rb, line 19
def last(*)
  Gifted::Decorator.instance.decorate_association(@association.owner, super)
end
take(*) click to toggle source
Calls superclass method
# File lib/gifted/monkey/active_record/associations.rb, line 15
def take(*)
  Gifted::Decorator.instance.decorate_association(@association.owner, super)
end

Private Instance Methods

find_nth_from_last(*) click to toggle source
Calls superclass method
# File lib/gifted/monkey/active_record/associations.rb, line 29
def find_nth_from_last(*)
  Gifted::Decorator.instance.decorate_association(@association.owner, super)
end
find_nth_with_limit(*) click to toggle source
Calls superclass method
# File lib/gifted/monkey/active_record/associations.rb, line 25
def find_nth_with_limit(*)
  Gifted::Decorator.instance.decorate_association(@association.owner, super)
end