Skip to content

Commit

Permalink
Rename InlineLoader to Wrappers.
Browse files Browse the repository at this point in the history
  • Loading branch information
ioquatix committed Aug 20, 2024
1 parent 01f438b commit d78cd43
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/bake/registry/aggregate.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

require_relative 'directory_loader'
require_relative 'file_loader'
require_relative 'inline_loader'
require_relative 'wrappers'

module Bake
# Structured access to the working directory and loaded gems for loading bakefiles.
Expand Down Expand Up @@ -37,7 +37,7 @@ def initialize
# The ordered list of loaders:
@ordered = Array.new

@wrappers = InlineLoader.new
@wrappers = Wrappers.new
end

def wrap(...)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module Bake
module Registry
class InlineLoader
class Wrappers
def initialize
@wrappers = Hash.new do |hash, key|
hash[key] = []
Expand Down

0 comments on commit d78cd43

Please sign in to comment.