Method: Date#strftime
- Defined in:
- lib/wareki/std_ext.rb
#strftime(format = '%F') ⇒ Object
19 20 21 22 23 24 25 |
# File 'lib/wareki/std_ext.rb', line 19 def strftime(format = '%F') if format.index('%J') to_wareki_date.strftime(format) else _wareki_strftime_orig(format) end end |