class Praxis::BootloaderStages::SubgroupLoader

Attributes

order[W]

Public Instance Methods

order() click to toggle source
# File lib/praxis/bootloader_stages/subgroup_loader.rb, line 8
def order
  @order ||= application.file_layout[name] == [] ? [] : application.file_layout[name].groups.keys
end
setup!() click to toggle source
# File lib/praxis/bootloader_stages/subgroup_loader.rb, line 12
def setup!
  order.each do |group|
    @stages << FileLoader.new(group, application, path: [name, group])
  end
  setup_deferred_callbacks!
end