diff options
author | Nihad Abbasov <narkoz.2008@gmail.com> | 2013-01-11 18:51:35 +0400 |
---|---|---|
committer | Nihad Abbasov <narkoz.2008@gmail.com> | 2013-01-11 18:51:35 +0400 |
commit | c6897b7d7b18b5c89aca46d4595b47c2590ce335 (patch) | |
tree | 4df4d2d479e5cd4ce6555a2bdb3dc28f9d348b68 /activesupport/lib/active_support | |
parent | 39a88f6f0eb1900d991ccde6fe59f56bfa4857ba (diff) | |
download | rails-c6897b7d7b18b5c89aca46d4595b47c2590ce335.tar.gz rails-c6897b7d7b18b5c89aca46d4595b47c2590ce335.tar.bz2 rails-c6897b7d7b18b5c89aca46d4595b47c2590ce335.zip |
remove_possible_method -> remove_method
Date#to_time and Date#xmlschema methods defined in Ruby 1.9.3
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r-- | activesupport/lib/active_support/core_ext/date/conversions.rb | 4 |
1 files changed, 2 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 fe08ade7e0..cdf606f28c 100644 --- a/activesupport/lib/active_support/core_ext/date/conversions.rb +++ b/activesupport/lib/active_support/core_ext/date/conversions.rb @@ -17,10 +17,10 @@ class Date } # Ruby 1.9 has Date#to_time which converts to localtime only. - remove_possible_method :to_time + remove_method :to_time # Ruby 1.9 has Date#xmlschema which converts to a string without the time component. - remove_possible_method :xmlschema + remove_method :xmlschema # Convert to a formatted string. See DATE_FORMATS for predefined formats. # |