Sha256: 58c262c5d67917e86dcafc0e32bb7e6b44c73d0661c6784e0e86f946ce595ec1
Contents?: true
Size: 372 Bytes
Versions: 37
Compression:
Stored size: 372 Bytes
Contents
module Praxis module BootloaderStages class PluginLoader < Stage def initialize(name, context,**opts) super stages << PluginConfigPrepare.new(:prepare, context, parent: self) stages << PluginConfigLoad.new(:load, context, parent: self) stages << PluginSetup.new(:setup, context, parent: self) end end end end
Version data entries
37 entries across 37 versions & 1 rubygems