diff options
author | Sebastian Martinez <sebastian@wyeworks.com> | 2011-05-08 11:31:56 -0300 |
---|---|---|
committer | Sebastian Martinez <sebastian@wyeworks.com> | 2011-05-08 11:31:56 -0300 |
commit | b94d94a1ae8b80b21b0cb21f99af14dc420405e8 (patch) | |
tree | d05835950f4965a03f1c4e5bf1871b69f1689f25 /activesupport | |
parent | 9be7911e873e1ba0d0b0bac197b426693b4f3885 (diff) | |
download | rails-b94d94a1ae8b80b21b0cb21f99af14dc420405e8.tar.gz rails-b94d94a1ae8b80b21b0cb21f99af14dc420405e8.tar.bz2 rails-b94d94a1ae8b80b21b0cb21f99af14dc420405e8.zip |
Better use #remove_possible_method here
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/core_ext/date/conversions.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/core_ext/date/conversions.rb b/activesupport/lib/active_support/core_ext/date/conversions.rb index 769ead9544..338104fd05 100644 --- a/activesupport/lib/active_support/core_ext/date/conversions.rb +++ b/activesupport/lib/active_support/core_ext/date/conversions.rb @@ -1,6 +1,7 @@ require 'date' require 'active_support/inflector/methods' require 'active_support/core_ext/date/zones' +require 'active_support/core_ext/module/remove_method' class Date DATE_FORMATS = { @@ -13,10 +14,10 @@ class Date } # Ruby 1.9 has Date#to_time which converts to localtime only. - remove_method :to_time if method_defined?(:to_time) + remove_possible_method :to_time # Ruby 1.9 has Date#xmlschema which converts to a string without the time component. - remove_method :xmlschema if method_defined?(:xmlschema) + remove_possible_method :xmlschema # Convert to a formatted string. See DATE_FORMATS for predefined formats. # |