Class: DateTime

Inherits:
Object
  • Object
show all
Defined in:
lib/ndr_support/date_and_time_extensions.rb

Overview

Extend standard DateTime class with our custom to_s overrides

Instance Method Summary collapse

Instance Method Details

#orig_to_sObject



63
# File 'lib/ndr_support/date_and_time_extensions.rb', line 63

alias orig_to_s to_s

#to_s(format = :default) ⇒ Object

Rails 7 stops overriding to_s (without a format specification) (for performance on Ruby 3.1) cf. activesupport-7.0.4/lib/active_support/core_ext/date/deprecated_conversions.rb We keep overriding this for compatibility



68
69
70
71
72
73
74
# File 'lib/ndr_support/date_and_time_extensions.rb', line 68

def to_s(format = :default)
  if format == :default
    Time::DATE_FORMATS.key?(:default) ? to_fs(:default) : orig_to_s
  else
    orig_to_s(format)
  end
end