module Sequel::Plugins::TypecastOnLoad::InstanceMethods

  1. lib/sequel/plugins/typecast_on_load.rb
Parent: TypecastOnLoad

Methods

Public Instance

  1. load_typecast

Public Instance methods

load_typecast ()

Call the setter method for each of the model’s typecast_on_load_columns with the current value, so it can be typecasted correctly.

[show source]
# File lib/sequel/plugins/typecast_on_load.rb, line 51
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