Module: ActiveSupport::CoreExtensions::String::Conversions

Included in:
String
Defined in:
lib/active_support/core_ext/string/conversions.rb

Overview

Converting strings to other objects

Instance Method Summary collapse

Instance Method Details

#to_dateObject



13
14
15
# File 'lib/active_support/core_ext/string/conversions.rb', line 13

def to_date
  ::Date.new(*ParseDate.parsedate(self)[0..2])
end

#to_time(form = :utc) ⇒ Object

Form can be either :utc (default) or :local.



9
10
11
# File 'lib/active_support/core_ext/string/conversions.rb', line 9

def to_time(form = :utc)
  ::Time.send(form, *ParseDate.parsedate(self))
end