class Methods::InstanceMethodsWrapper

Public Class Methods

new(obj) click to toggle source
# File lib/methods/instance_methods_wrapper.rb, line 3
def initialize(obj)
  @obj = obj
end

Public Instance Methods

method_missing(method) click to toggle source
# File lib/methods/instance_methods_wrapper.rb, line 7
def method_missing(method)
  @obj.instance_method(method)
end
respond_to_missing?(*args) click to toggle source
# File lib/methods/instance_methods_wrapper.rb, line 11
def respond_to_missing?(*args)
  true
end