Module | ActiveSupport::CoreExtensions::Date::Conversions |
In: |
vendor/rails/activesupport/lib/active_support/core_ext/date/conversions.rb
|
Getting dates in different convenient string representations and other objects
DATE_FORMATS | = | { :short => "%e %b", :long => "%B %e, %Y" |
To be able to keep Dates and Times interchangeable on conversions
# File vendor/rails/activesupport/lib/active_support/core_ext/date/conversions.rb, line 21 21: def to_date 22: self 23: end
# File vendor/rails/activesupport/lib/active_support/core_ext/date/conversions.rb, line 16 16: def to_formatted_s(format = :default) 17: DATE_FORMATS[format] ? strftime(DATE_FORMATS[format]).strip : to_default_s 18: end
# File vendor/rails/activesupport/lib/active_support/core_ext/date/conversions.rb, line 25 25: def to_time(form = :local) 26: if respond_to?(:hour) 27: ::Time.send(form, year, month, day, hour, min, sec) 28: else 29: ::Time.send(form, year, month, day) 30: end 31: end