2025-06-16 17:33:24 +01:00
|
|
|
# typed: strict
|
2025-03-18 17:38:37 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2025-03-24 21:55:47 +08:00
|
|
|
require "bundle/adder"
|
|
|
|
|
2025-03-18 17:38:37 +00:00
|
|
|
module Homebrew
|
|
|
|
module Bundle
|
|
|
|
module Commands
|
|
|
|
module Add
|
2025-06-16 17:33:24 +01:00
|
|
|
sig { params(args: String, type: Symbol, global: T::Boolean, file: T.nilable(String)).void }
|
2025-03-21 04:24:55 +00:00
|
|
|
def self.run(*args, type:, global:, file:)
|
2025-03-18 17:38:37 +00:00
|
|
|
Homebrew::Bundle::Adder.add(*args, type:, global:, file:)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|