Class: ActiveRecord::ConnectionAdapters::Column

Inherits:
Object
  • Object
show all
Defined in:
lib/dolzenko/django_f_object.rb

Instance Method Summary collapse

Instance Method Details

#type_cast_with_f_object(value) ⇒ Object



86
87
88
89
# File 'lib/dolzenko/django_f_object.rb', line 86

def type_cast_with_f_object(value)
  return value if value.is_a?(F)
  type_cast_without_f_object(value)
end