mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
29 lines
866 B
Ruby
29 lines
866 B
Ruby
# typed: true
|
|
# frozen_string_literal: true
|
|
|
|
module UnpackStrategy
|
|
# Strategy for unpacking uncompressed files.
|
|
class Uncompressed
|
|
include UnpackStrategy
|
|
|
|
sig {
|
|
params(
|
|
to: T.nilable(Pathname),
|
|
basename: T.nilable(T.any(String, Pathname)),
|
|
verbose: T::Boolean,
|
|
prioritize_extension: T::Boolean,
|
|
).returns(T.untyped)
|
|
}
|
|
def extract_nestedly(to: nil, basename: nil, verbose: false, prioritize_extension: false)
|
|
extract(to: to, basename: basename, verbose: verbose)
|
|
end
|
|
|
|
private
|
|
|
|
sig { override.params(unpack_dir: Pathname, basename: Pathname, verbose: T::Boolean).returns(T.untyped) }
|
|
def extract_to_dir(unpack_dir, basename:, verbose: false)
|
|
FileUtils.cp path, unpack_dir/basename, preserve: true, verbose: verbose
|
|
end
|
|
end
|
|
end
|