Method: ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Point#cast

Defined in:
activerecord/lib/active_record/connection_adapters/postgresql/oid/point.rb

#cast(value) ⇒ Object



16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# 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.start_with?("(") && value.end_with?(")")
      value = value[1...-1]
    end
    x, y = value.split(",")
    build_point(x, y)
  when ::Array
    build_point(*value)
  when ::Hash
    return if value.blank?

    build_point(*values_array_from_hash(value))
  else
    value
  end
end