method
cast_value
v5.2.3 -
Show latest stable
- Class:
ActiveModel::Type::ImmutableString
cast_value(value)private
No documentation available.
# File activemodel/lib/active_model/type/immutable_string.rb, line 21
def cast_value(value)
result = case value
when true then "t"
when false then "f"
else value.to_s
end
result.freeze
end