class Bake::Registry::BakefileLoader
Attributes
Public Class Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/bake-0.23.1/lib/bake/registry/bakefile_loader.rb, line 11 def initialize(path) @path = path end
Public Instance Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/bake-0.23.1/lib/bake/registry/bakefile_loader.rb, line 21 def each(&block) yield [] end
Source
# File vendor/bundle/ruby/3.4.0/gems/bake-0.23.1/lib/bake/registry/bakefile_loader.rb, line 25 def scopes_for(path) if path == [] yield Scope.load(@path, []) end end
Source
# File vendor/bundle/ruby/3.4.0/gems/bake-0.23.1/lib/bake/registry/bakefile_loader.rb, line 15 def to_s "#{self.class} #{@path}" end