Sha256: 0002bb7a4d2cef1fbec0ab889c96357f7db9eca4c45f2caa0814ec978c966839

Contents?: true

Size: 1.15 KB

Versions: 5

Compression:

Stored size: 1.15 KB

Contents

module PassiveRecord
  module Associations
    class HasManyAssociation < Struct.new(:parent_class, :child_class_name, :children_name_sym)
      def to_relation(parent_model)
        HasManyRelation.new(self, parent_model)
      end

      def target_name_symbol
        children_name_sym
      end

      def habtm
        false #@habtm ||= false 
      end #?
    end

    class HasManyRelation < HasOneRelation
      include Enumerable
      extend Forwardable

      include PassiveRecord::ArithmeticHelpers

      def all
        child_class.where(parent_model_id_field => parent_model.id).all
      end

      def_delegators :all, :each, :last, :all?, :empty?, :sample

      def where(conditions={})
        child_class.where(conditions.merge(parent_model_id_field.to_sym => parent_model.id))
      end

      def <<(child)
        child.send(parent_model_id_field + "=", parent_model.id)
        all
      end

      def singular?
        false
      end

      def method_missing(meth,*args,&blk)
        if child_class.methods.include?(meth)
          where.send(meth,*args,&blk)
        else
          super(meth,*args,&blk)
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
passive_record-0.4.15 lib/passive_record/associations/has_many.rb
passive_record-0.4.14 lib/passive_record/associations/has_many.rb
passive_record-0.4.13 lib/passive_record/associations/has_many.rb
passive_record-0.4.12 lib/passive_record/associations/has_many.rb
passive_record-0.4.11 lib/passive_record/associations/has_many.rb