Sha256: 3c18602a22f81d98b25d46fb49f8ef66a03078a844044c87f4d7b12d4b42b319
Contents?: true
Size: 398 Bytes
Versions: 23
Compression:
Stored size: 398 Bytes
Contents
# frozen_string_literal: true 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
23 entries across 23 versions & 1 rubygems