| Module | ActiveSupport::CoreExtensions::Time::Conversions |
| In: |
vendor/rails/activesupport/lib/active_support/core_ext/time/conversions.rb
|
Getting times in different convenient string representations and other objects
| DATE_FORMATS | = | { :db => "%Y-%m-%d %H:%M:%S", :short => "%d %b %H:%M", :long => "%B %d, %Y %H:%M", :rfc822 => "%a, %d %b %Y %H:%M:%S %z" |
# File vendor/rails/activesupport/lib/active_support/core_ext/time/conversions.rb, line 16
16: def self.append_features(klass)
17: super
18: klass.send(:alias_method, :to_default_s, :to_s)
19: klass.send(:alias_method, :to_s, :to_formatted_s)
20: end
# File vendor/rails/activesupport/lib/active_support/core_ext/time/conversions.rb, line 26
26: def to_date
27: ::Date.new(year, month, day)
28: end