method
to_fs
v7.1.3.2 -
Show latest stable
-
0 notes -
Class: Date
- 1.0.0
- 1.1.6
- 1.2.6
- 2.0.3
- 2.1.0
- 2.2.1
- 2.3.8
- 3.0.0
- 3.0.9
- 3.1.0
- 3.2.1
- 3.2.8
- 3.2.13
- 4.0.2
- 4.1.8
- 4.2.1
- 4.2.7
- 4.2.9
- 5.0.0.1
- 5.1.7
- 5.2.3
- 6.0.0
- 6.1.3.1
- 6.1.7.7
- 7.0.0 (0)
- 7.1.3.2 (38)
- 7.1.3.4 (0)
- What's this?
to_fs(format = :default)
public
Convert to a formatted string. See DATE_FORMATS for predefined formats.
This method is aliased to to_formatted_s.
date = Date.new(2007, 11, 10) # => Sat, 10 Nov 2007 date.to_fs(:db) # => "2007-11-10" date.to_formatted_s(:db) # => "2007-11-10" date.to_fs(:short) # => "10 Nov" date.to_fs(:number) # => "20071110" date.to_fs(:long) # => "November 10, 2007" date.to_fs(:long_ordinal) # => "November 10th, 2007" date.to_fs(:rfc822) # => "10 Nov 2007" date.to_fs(:iso8601) # => "2007-11-10"
Adding your own date formats to to_fs
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/date_formats.rb Date::DATE_FORMATS[:month_and_year] = '%B %Y' Date::DATE_FORMATS[:short_ordinal] = ->(date) { date.strftime("%B #{date.day.ordinalize}") }