class Praxis::BootloaderStages::SubgroupLoader
Attributes
Public Instance Methods
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
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