diff options
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/core_ext/string/conversions.rb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/string/conversions.rb b/activesupport/lib/active_support/core_ext/string/conversions.rb index cfb767d1f9..096778e26f 100644 --- a/activesupport/lib/active_support/core_ext/string/conversions.rb +++ b/activesupport/lib/active_support/core_ext/string/conversions.rb @@ -7,12 +7,16 @@ module ActiveSupport #:nodoc: module Conversions # Form can be either :utc (default) or :local. def to_time(form = :utc) - ::Time.send(form, *ParseDate.parsedate(self)) + ::Time.send("#{form}_time", *ParseDate.parsedate(self)[0..5].map {|arg| arg || 0}) end def to_date ::Date.new(*ParseDate.parsedate(self)[0..2]) end + + def to_datetime + ::DateTime.civil(*ParseDate.parsedate(self)[0..5].map {|arg| arg || 0} << 0 << 0) + end end end end |