aboutsummaryrefslogblamecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/module/remove_method.rb
blob: 8a2569a7d0560a9b67c91af8c0c0f58a76d9e7f5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
            
                                          
                                    
                                                                 
                          
       
     
 

                                                                              



                                     
   
class Module
  # Remove the named method, if it exists.
  def remove_possible_method(method)
    if method_defined?(method) || private_method_defined?(method)
      undef_method(method)
    end
  end

  # Replace the existing method definition, if there is one, with the contents
  # of the block.
  def redefine_method(method, &block)
    remove_possible_method(method)
    define_method(method, &block)
  end
end