Class: ParameterSubstitution::Formatters::TimeWithSeconds
- Inherits:
-
DateTimeFormat
- Object
- Base
- DateTimeFormat
- ParameterSubstitution::Formatters::TimeWithSeconds
- Defined in:
- lib/parameter_substitution/formatters/time_with_seconds.rb
Constant Summary
Constants inherited from DateTimeFormat
DateTimeFormat::MINIMUM_INTEGER_TIME
Class Method Summary collapse
Methods inherited from DateTimeFormat
from_custom_time, from_parse, from_unix_time_ms, from_unix_time_sec, from_yyyymmddhhmmssss, parse_to_time
Methods inherited from Base
encoding, has_parameters?, key, parse_duration
Class Method Details
.description ⇒ Object
4 5 6 |
# File 'lib/parameter_substitution/formatters/time_with_seconds.rb', line 4 def self.description "hh:mm:ss" end |
.format(value) ⇒ Object
8 9 10 |
# File 'lib/parameter_substitution/formatters/time_with_seconds.rb', line 8 def self.format(value) parse_to_time(value)&.strftime("%H:%M:%S").to_s end |