Skip to content

Commit

Permalink
add missing OpenStruct requires
Browse files Browse the repository at this point in the history
  • Loading branch information
EricFromCanada committed Nov 6, 2024
1 parent 2c79b90 commit b55659f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions spec/bundle/brew_dumper_spec.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# frozen_string_literal: true

require "ostruct"
require "spec_helper"
require "tsort"
require "formula"
Expand Down
1 change: 1 addition & 0 deletions spec/bundle/skipper_spec.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# frozen_string_literal: true

require "ostruct"
require "spec_helper"

describe Bundle::Skipper do
Expand Down
1 change: 1 addition & 0 deletions spec/stub/formula.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# frozen_string_literal: true

require "ostruct"
require "pathname"

class Formula
Expand Down
2 changes: 2 additions & 0 deletions spec/stub/os.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# frozen_string_literal: true

require "ostruct"

module MacOS
module CLT
def self.version
Expand Down
2 changes: 2 additions & 0 deletions spec/stub/tap.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# frozen_string_literal: true

require "ostruct"

class Tap
def self.select(*)
[]
Expand Down

0 comments on commit b55659f

Please sign in to comment.