aboutsummaryrefslogblamecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/module/remove_method.rb
blob: 2714a46b28737137d4d64ada3db85268838d268b (plain) (tree)
1
2
3
4
5
6





                                    
class Module
  def remove_possible_method(method)
    remove_method(method)
  rescue NameError
  end
end