Class: Realize::Format::Lowercase
- Inherits:
-
Object
- Object
- Realize::Format::Lowercase
- Defined in:
- lib/realize/format/lowercase.rb
Overview
Call #to_s.downcase on the value and return result.
Instance Method Summary collapse
Instance Method Details
#transform(_resolver, value, _time, _record) ⇒ Object
16 17 18 |
# File 'lib/realize/format/lowercase.rb', line 16 def transform(_resolver, value, _time, _record) value.to_s.downcase end |