method

cast_value

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