Sha256: ea6a4cc5fb3766577c340d44e8691bec6c72dc1cd57688f501762558ab20475d

Contents?: true

Size: 307 Bytes

Versions: 1

Compression:

Stored size: 307 Bytes

Contents

module Superhosting
  module MapperInheritance
    module Base
      attr_accessor :inheritors, :inheritors_tree

      def initialize
        self.inheritors = {}
        self.inheritors_tree = {}
      end

      def set_inheritors(mapper)
        self.set_inheritance(mapper)
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
superhosting-0.0.2 lib/superhosting/mapper_inheritance/base.rb