Module: Doodle::Core::ModuleMethods

Included in:
Doodle::Core
Defined in:
lib/doodle/core.rb

Instance Method Summary collapse

Instance Method Details

#included(other) ⇒ Object



25
26
27
28
29
30
31
32
33
34
# File 'lib/doodle/core.rb', line 25

def included(other)
  super
  other.module_eval {
    # FIXME: this is getting a bit arbitrary
    include Equality
    include Comparable
    include Inherited
    inherit BaseMethods
  }
end