Class: Time
- Inherits:
-
Object
- Object
- Time
- Defined in:
- lib/ndr_support/date_and_time_extensions.rb
Overview
Instance Method Summary collapse
- #orig_to_s ⇒ Object
-
#to_iso ⇒ Object
to_iso output must be SQL safe for security reasons.
-
#to_s(format = :default) ⇒ Object
Rails 7 stops overriding to_s (without a format specification) (for performance on Ruby 3.1) cf.
Instance Method Details
#orig_to_s ⇒ Object
47 |
# File 'lib/ndr_support/date_and_time_extensions.rb', line 47 alias orig_to_s to_s |
#to_iso ⇒ Object
to_iso output must be SQL safe for security reasons
43 44 45 |
# File 'lib/ndr_support/date_and_time_extensions.rb', line 43 def to_iso strftime('%Y-%m-%dT%H:%M:%S') end |
#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
52 53 54 55 56 57 58 |
# File 'lib/ndr_support/date_and_time_extensions.rb', line 52 def to_s(format = :default) if format == :default to_formatted_s(:default) else orig_to_s(format) end end |