method

redefine_method

v4.2.7 - Show latest stable - Class: Module
redefine_method(method, &block)
public

No documentation available.

# File activesupport/lib/active_support/core_ext/module/remove_method.rb, line 8
  def redefine_method(method, &block)
    remove_possible_method(method)
    define_method(method, &block)
  end