Module: ActiveSupport::CoreExtensions::DateTime::Conversions

Included in:
DateTime
Defined in:
lib/active_support/core_ext/date_time/conversions.rb

Overview

Getting datetimes in different convenient string representations and other objects

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.included(base) ⇒ Object



6
7
8
9
10
11
12
13
# File 'lib/active_support/core_ext/date_time/conversions.rb', line 6

def self.included(base)
  base.class_eval do
    alias_method :to_datetime_default_s, :to_s
    alias_method :to_s, :to_formatted_s
    alias_method :default_inspect, :inspect
    alias_method :inspect, :readable_inspect
  end
end

Instance Method Details

#readable_inspectObject

Overrides the default inspect method with a human readable one, e.g., “Mon, 21 Feb 2005 14:30:00 +0000”



28
29
30
# File 'lib/active_support/core_ext/date_time/conversions.rb', line 28

def readable_inspect
  to_s(:rfc822)
end

#to_dateObject

Converts self to a Ruby Date object; time portion is discarded



33
34
35
# File 'lib/active_support/core_ext/date_time/conversions.rb', line 33

def to_date
  ::Date.new(year, month, day)
end

#to_datetimeObject

To be able to keep Times, Dates and DateTimes interchangeable on conversions



44
45
46
# File 'lib/active_support/core_ext/date_time/conversions.rb', line 44

def to_datetime
  self
end

#to_formatted_s(format = :default) ⇒ Object



15
16
17
18
19
20
21
22
23
24
25
# File 'lib/active_support/core_ext/date_time/conversions.rb', line 15

def to_formatted_s(format = :default)
  if formatter = ::Time::DATE_FORMATS[format]
    if formatter.respond_to?(:call)
      formatter.call(self).to_s
    else
      strftime(formatter)
    end
  else
    to_datetime_default_s
  end
end

#to_timeObject

Attempts to convert self to a Ruby Time object; returns self if out of range of Ruby Time class If self has an offset other than 0, self will just be returned unaltered, since there’s no clean way to map it to a Time



39
40
41
# File 'lib/active_support/core_ext/date_time/conversions.rb', line 39

def to_time
  self.offset == 0 ? ::Time.utc_time(year, month, day, hour, min, sec) : self
end

#xmlschemaObject



48
49
50
# File 'lib/active_support/core_ext/date_time/conversions.rb', line 48

def xmlschema
  strftime("%Y-%m-%dT%H:%M:%S#{offset == 0 ? 'Z' : '%Z'}")
end