module Sequel::Plugins::TypecastOnLoad::InstanceMethods
Public Instance Methods
load_typecast()
click to toggle source
Call the setter method for each of the model's typecast_on_load_columns with the current value, so it can be typecasted correctly.
# File lib/sequel/plugins/typecast_on_load.rb, line 45 def load_typecast model.typecast_on_load_columns.each do |c| if v = values[c] send("#{c}=", v) end end changed_columns.clear self end
set_values(values)
click to toggle source
Typecast values using load_typecast when the values are retrieved from the database.
Calls superclass method
# File lib/sequel/plugins/typecast_on_load.rb, line 57 def set_values(values) ret = super load_typecast ret end