class Module

def remove_possible_singleton_method(method)

Removes the named singleton method, if it exists.
def remove_possible_singleton_method(method)
  singleton_class.instance_eval do
    remove_possible_method(method)
  end
end