module Sequel::Plugins::AfterInitialize::ClassMethods

Public Instance Methods

call(_) click to toggle source

Call after_initialize for model objects loaded from the database.

Calls superclass method
   # File lib/sequel/plugins/after_initialize.rb
18 def call(_)
19   v = super
20   v.after_initialize
21   v
22 end