module RR::ClassInstanceMethodDefined

Public Instance Methods

class_instance_method_defined(klass, instance_method, include_super=true) click to toggle source
# File lib/rr/class_instance_method_defined.rb, line 3
def class_instance_method_defined(klass, instance_method, include_super=true)
  klass.instance_methods(include_super).detect {|method_name| method_name.to_sym == instance_method.to_sym} ||
    klass.protected_instance_methods(include_super).detect {|method_name| method_name.to_sym == instance_method.to_sym} ||
    klass.private_instance_methods(include_super).detect {|method_name| method_name.to_sym == instance_method.to_sym}
end