module Leafy::Logger::AppenderFactory::ClassMethods

Public Instance Methods

new( *args, &block ) click to toggle source
Calls superclass method
# File lib/leafy/logger/appender_factories.rb, line 19
def new( *args, &block )
  if block
    f = new( *args )
    f.instance_eval( &block )
    f
  else
    super
  end
end