instiki/vendor/rails/activesupport/lib/active_support/core_ext/module/remove_method.rb

6 lines
104 B
Ruby
Raw Normal View History

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