Flowdock
method

cast

Importance_0
v5.2.3 - Show latest stable - 0 notes - Class: Point
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/connection_adapters/postgresql/oid/point.rb, line 16
          def cast(value)
            case value
            when ::String
              return if value.blank?

              if value[0] == "(" && value[-1] == ")"
                value = value[1...-1]
              end
              x, y = value.split(",")
              build_point(x, y)
            when ::Array
              build_point(*value)
            else
              value
            end
          end
Register or log in to add new notes.