Module | ActiveSupport::CoreExtensions::String::Conversions |
In: |
vendor/rails/activesupport/lib/active_support/core_ext/string/conversions.rb
|
Converting strings to other objects
# File vendor/rails/activesupport/lib/active_support/core_ext/string/conversions.rb, line 18 18: def to_date 19: ::Date.new(*::Date._parse(self, false).values_at(:year, :mon, :mday)) 20: end
# File vendor/rails/activesupport/lib/active_support/core_ext/string/conversions.rb, line 22 22: def to_datetime 23: ::DateTime.civil(*::Date._parse(self, false).values_at(:year, :mon, :mday, :hour, :min, :sec).map { |arg| arg || 0 }) 24: end
Form can be either :utc (default) or :local.
# File vendor/rails/activesupport/lib/active_support/core_ext/string/conversions.rb, line 14 14: def to_time(form = :utc) 15: ::Time.send("#{form}_time", *::Date._parse(self, false).values_at(:year, :mon, :mday, :hour, :min, :sec).map { |arg| arg || 0 }) 16: end