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