Public Class methods
new(h={})
Call after_initialize
for new model objects.
[show source]
# File lib/sequel/plugins/after_initialize.rb 27 def initialize(h={}) 28 super 29 after_initialize 30 end
Public Instance methods
after_initialize()
An empty after_initialize
hook, so that plugins that use this can always call super to get the default behavior.
[show source]
# File lib/sequel/plugins/after_initialize.rb 34 def after_initialize 35 end