instiki/vendor/rails/activesupport/lib/active_support/core_ext/module/remove_method.rb
2010-09-05 15:24:15 -05:00

6 lines
104 B
Ruby

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