class Spec::Example::ModuleInclusionWarnings::MethodDispatcher

def call(sym, *args, &blk)

def call(sym, *args, &blk)
  Kernel.warn("Modules will no longer be automatically included in RSpec version 1.1.4.  Called from #{caller[2]}")
  @target.extend @mod
  @target.send(sym, *args, &blk)
end