module ConsoleLog

Constants

VERSION

Public Class Methods

instance() click to toggle source
# File lib/console_log.rb, line 8
def instance
  ConsoleLog::Base.instance
end
method_missing(method, *args) click to toggle source
Calls superclass method
# File lib/console_log.rb, line 3
def method_missing(method, *args)
  return instance.send(method, *args) if instance.respond_to?(method)
  super
end