module Feature::RecursiveIncluded

Public Instance Methods

included(includer) click to toggle source
# File test/zeugs.rb, line 22
def included(includer)
  #super # TODO: test me.
  puts "RecursiveIncluded in #{includer}"

  includer.module_eval do
    InheritedIncludedCodeBlock.call(includer)
    extend RecursiveIncluded
  end
end