Class/Module Index [+]

Quicksearch

ActiveSupport::CoreExtensions::String::Conversions

Converting strings to other objects

Public Instance Methods

ord() click to toggle source

'a'.ord == 'a' for Ruby 1.9 forward compatibility.

# File lib/active_support/core_ext/string/conversions.rb, line 9
def ord
  self[0]
end
to_date() click to toggle source
# 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_datetime() click to toggle source
# 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) click to toggle source

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

# 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

[Validate]

Generated with the Darkfish Rdoc Generator 2.