class Siba::SibaKernel

Public Instance Methods

method_missing(meth, *args, &block) click to toggle source
Calls superclass method
# File lib/siba/siba_kernel.rb, line 6
def method_missing(meth, *args, &block)
  if Kernel.respond_to? meth
    Kernel.send meth, *args, &block
  else
    super
  end
end
respond_to?(meth) click to toggle source
Calls superclass method
# File lib/siba/siba_kernel.rb, line 14
def respond_to?(meth)
  if Kernel.respond_to? meth
    true
  else
    super
  end
end