method

redefine_method

v3.2.1 - 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 12
  def redefine_method(method, &block)
    remove_possible_method(method)
    define_method(method, &block)
  end