module ActiveRecord::ConnectionAdapters::PostGIS::Quoting

Public Instance Methods

type_cast(value) click to toggle source
Calls superclass method
# File lib/active_record/connection_adapters/postgis/quoting.rb, line 7
def type_cast(value)
  case value
  when RGeo::Feature::Instance
    value.to_s
  else
    super
  end
end