module Crazyton::ClassMethods

Public Instance Methods

method_missing(method, *args, &block) click to toggle source
# File lib/crazyton.rb, line 12
               def method_missing(method, *args, &block)
  instance.public_send(method, *args, &block)
end
respond_to_missing?(method, include_private) click to toggle source
# File lib/crazyton.rb, line 16
def respond_to_missing?(method, include_private)
  instance.respond_to?(method, include_private)
end