method

remove_possible_method

v4.2.1 - Show latest stable - Class: Module
remove_possible_method(method)
public

No documentation available.

# File activesupport/lib/active_support/core_ext/module/remove_method.rb, line 2
  def remove_possible_method(method)
    if method_defined?(method) || private_method_defined?(method)
      undef_method(method)
    end
  end