method
redefine_method
redefine_method(method, &block)
public
Hide source
# 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


