Class: ParameterSubstitution::Formatters::Lower
- Inherits:
-
Base
- Object
- Base
- ParameterSubstitution::Formatters::Lower
show all
- Defined in:
- lib/parameter_substitution/formatters/lower.rb
Class Method Summary
collapse
Methods inherited from Base
encoding, has_parameters?, key, parse_duration
Class Method Details
.description ⇒ Object
4
5
6
|
# File 'lib/parameter_substitution/formatters/lower.rb', line 4
def self.description
"Converts to string and returns all characters lowercased, preserves nil."
end
|
8
9
10
|
# File 'lib/parameter_substitution/formatters/lower.rb', line 8
def self.format(value)
value&.to_s&.downcase
end
|