Class: ActiveSupport::TimeWithZone

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

Instance Method Summary collapse

Instance Method Details

#orig_to_sObject



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

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



87
88
89
90
91
92
93
# File 'lib/ndr_support/date_and_time_extensions.rb', line 87

def to_s(format = :default)
  if format == :default
    to_formatted_s(:default)
  else
    orig_to_s(format)
  end
end