Flowdock
method

type_cast

Importance_0
v4.2.9 - Show latest stable - 0 notes - Class: Binary
type_cast(value) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/type/binary.rb, line 12
      def type_cast(value)
        if value.is_a?(Data)
          value.to_s
        else
          super
        end
      end
Register or log in to add new notes.