class Bake::Registry::FileLoader
Attributes
Public Class Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/bake-0.23.1/lib/bake/registry/directory_loader.rb, line 54 def initialize(paths) @paths = paths end
Public Instance Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/bake-0.23.1/lib/bake/registry/directory_loader.rb, line 64 def each(&block) @paths.each_key(&block) end
Source
# File vendor/bundle/ruby/3.4.0/gems/bake-0.23.1/lib/bake/registry/directory_loader.rb, line 68 def scope_for(path) if file_path = @paths[path] if File.exist?(file_path) return Scope.load(file_path, path) end end end
Source
# File vendor/bundle/ruby/3.4.0/gems/bake-0.23.1/lib/bake/registry/directory_loader.rb, line 58 def to_s "#{self.class} #{@paths}" end