class Bake::Registry::DirectoryLoader
Represents a directory which contains bakefiles.
Attributes
The root path for this loader.
Public Class Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/bake-0.23.1/lib/bake/registry/directory_loader.rb, line 14 def initialize(root, name: nil) @root = root @name = name end
Initialize the loader with the specified root path. @parameter root [String] A file-system path.
Public Instance Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/bake-0.23.1/lib/bake/registry/directory_loader.rb, line 32 def each return to_enum unless block_given? Dir.glob("**/*.rb", base: @root) do |file_path| yield file_path.sub(/\.rb$/, "").split(File::SEPARATOR) end end
Enumerate all bakefiles within the loaders root directory.
You can pass the yielded path to {scope_for} to load the corresponding {Scope}.
@yields {|path| …}
@parameter path [String] The (relative) scope path.
Source
# File vendor/bundle/ruby/3.4.0/gems/bake-0.23.1/lib/bake/registry/directory_loader.rb, line 42 def scopes_for(path) *directory, file = *path file_path = File.join(@root, directory, "#{file}.rb") if File.exist?(file_path) yield Scope.load(file_path, path) end end
Load the {Scope} for the specified relative path within this loader, if it exists. @parameter path [Array(String
)] A relative path.
Source
# File vendor/bundle/ruby/3.4.0/gems/bake-0.23.1/lib/bake/registry/directory_loader.rb, line 19 def to_s "#{self.class} #{@name || @root}" end