class Module

Public Instance Methods

redefine_method(method, &block) click to toggle source
# File vendor/active_support/core_ext/module/remove_method.rb, line 7
def redefine_method(method, &block)
  remove_possible_method(method)
  define_method(method, &block)
end
remove_possible_method(method) click to toggle source
# File vendor/active_support/core_ext/module/remove_method.rb, line 2
def remove_possible_method(method)
  remove_method(method)
rescue NameError
end