class Boxwerk::GlobalContext
Runtime context for the root box, accessible via Boxwerk.global from any box context (global boot, package boot, or application code).
Attributes
@return [GlobalContext::Autoloader] Autoloader configuration for the root box.
Public Class Methods
Source
# File lib/boxwerk/global_context.rb, line 10 def initialize(root_path) @root_path = root_path @autoloader = Autoloader.new(root_path) @default_dirs = [] end