Module: ActiveSupport::CoreExtensions::Time::Conversions

Included in:
Time
Defined in:
lib/active_support/core_ext/time/conversions.rb

Overview

Getting times in different convenient string representations and other objects

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.append_features(klass) ⇒ Object



8
9
10
11
12
# File 'lib/active_support/core_ext/time/conversions.rb', line 8

def self.append_features(klass)
  super
  klass.send(:alias_method, :to_default_s, :to_s)
  klass.send(:alias_method, :to_s, :to_formatted_s)
end

Instance Method Details

#to_dateObject



23
24
25
# File 'lib/active_support/core_ext/time/conversions.rb', line 23

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

#to_formatted_s(format = :default) ⇒ Object



14
15
16
17
18
19
20
21
# File 'lib/active_support/core_ext/time/conversions.rb', line 14

def to_formatted_s(format = :default)
  case format
    when :default then to_default_s
    when :db      then strftime("%Y-%m-%d %H:%M:%S")
    when :short   then strftime("%e %b %H:%M").strip
    when :long    then strftime("%B %e, %Y %H:%M").strip
  end
end

#to_timeObject

To be able to keep Dates and Times interchangeable on conversions



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

def to_time
  self
end