Flowdock
method

to_formatted_s

Importance_2
Ruby on Rails latest stable (v6.1.7.7) - 0 notes - Class: ActiveSupport::CoreExtensions::Date::Conversions

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v2.3.8) is shown here.

These similar methods exist in v6.1.7.7:

to_formatted_s(format = :default) public

Convert to a formatted string. See DATE_FORMATS for predefined formats.

This method is aliased to to_s.

Examples

  date = Date.new(2007, 11, 10)       # => Sat, 10 Nov 2007

  date.to_formatted_s(:db)            # => "2007-11-10"
  date.to_s(:db)                      # => "2007-11-10"

  date.to_formatted_s(:short)         # => "10 Nov"
  date.to_formatted_s(:long)          # => "November 10, 2007"
  date.to_formatted_s(:long_ordinal)  # => "November 10th, 2007"
  date.to_formatted_s(:rfc822)        # => "10 Nov 2007"

Adding your own time formats to to_formatted_s

You can add your own formats to the Date::DATE_FORMATS hash. Use the format name as the hash key and either a strftime string or Proc instance that takes a date argument as the value.

  # config/initializers/time_formats.rb
  Date::DATE_FORMATS[:month_and_year] = "%B %Y"
  Date::DATE_FORMATS[:short_ordinal] = lambda { |date| date.strftime("%B #{date.day.ordinalize}") }
Show source
Register or log in to add new notes.