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

#ordObject

‘a’.ord == ‘a’ for Ruby 1.9 forward compatibility.



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

def ord
  self[0]
end

#to_dateObject



18
19
20
# File 'lib/active_support/core_ext/string/conversions.rb', line 18

def to_date
  ::Date.new(*::Date._parse(self, false).values_at(:year, :mon, :mday))
end

#to_datetimeObject



22
23
24
# File 'lib/active_support/core_ext/string/conversions.rb', line 22

def to_datetime
  ::DateTime.civil(*::Date._parse(self, false).values_at(:year, :mon, :mday, :hour, :min, :sec).map { |arg| arg || 0 })
end

#to_time(form = :utc) ⇒ Object

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



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

def to_time(form = :utc)
  ::Time.send("#{form}_time", *::Date._parse(self, false).values_at(:year, :mon, :mday, :hour, :min, :sec).map { |arg| arg || 0 })
end