module Dispatcher::InitializeWithBlock

Public Instance Methods

new(*args, &block) click to toggle source
# File lib/bakery/detail/dispatcher.rb, line 18
def new *args, &block
  obj = self.allocate
  obj.send :initialize, *args, &block
  obj
end