method

cast_value

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