method
cast_value
v6.1.3.1 -
Show latest stable
- Class:
ActiveModel::Type::ImmutableString
cast_value(value)private
No documentation available.
# File activemodel/lib/active_model/type/immutable_string.rb, line 26
def cast_value(value)
case value
when true then @true
when false then @false
else value.to_s.freeze
end
end