mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
53 lines
1.7 KiB
Ruby
53 lines
1.7 KiB
Ruby
![]() |
# typed: true # rubocop:todo Sorbet/StrictSigil
|
||
|
# frozen_string_literal: true
|
||
|
|
||
|
require "fileutils"
|
||
|
require "pathname"
|
||
|
|
||
|
module Homebrew
|
||
|
module Bundle
|
||
|
module Dumper
|
||
|
module_function
|
||
|
|
||
|
def can_write_to_brewfile?(brewfile_path, force: false)
|
||
|
raise "#{brewfile_path} already exists" if should_not_write_file?(brewfile_path, overwrite: force)
|
||
|
|
||
|
true
|
||
|
end
|
||
|
|
||
|
def build_brewfile(describe:, no_restart:, brews:, taps:, casks:, mas:, whalebrew:, vscode:)
|
||
|
content = []
|
||
|
content << TapDumper.dump if taps
|
||
|
content << BrewDumper.dump(describe:, no_restart:) if brews
|
||
|
content << CaskDumper.dump(describe:) if casks
|
||
|
content << MacAppStoreDumper.dump if mas
|
||
|
content << WhalebrewDumper.dump if whalebrew
|
||
|
content << VscodeExtensionDumper.dump if vscode
|
||
|
"#{content.reject(&:empty?).join("\n")}\n"
|
||
|
end
|
||
|
|
||
|
def dump_brewfile(global:, file:, describe:, force:, no_restart:, brews:, taps:, casks:, mas:, whalebrew:,
|
||
|
vscode:)
|
||
|
path = brewfile_path(global:, file:)
|
||
|
can_write_to_brewfile?(path, force:)
|
||
|
content = build_brewfile(describe:, no_restart:, taps:, brews:, casks:, mas:, whalebrew:, vscode:)
|
||
|
write_file path, content
|
||
|
end
|
||
|
|
||
|
def brewfile_path(global: false, file: nil)
|
||
|
Brewfile.path(dash_writes_to_stdout: true, global:, file:)
|
||
|
end
|
||
|
|
||
|
def should_not_write_file?(file, overwrite: false)
|
||
|
file.exist? && !overwrite && file.to_s != "/dev/stdout"
|
||
|
end
|
||
|
|
||
|
def write_file(file, content)
|
||
|
Bundle.exchange_uid_if_needed! do
|
||
|
file.open("w") { |io| io.write content }
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|