2020-10-10 14:16:11 +02:00
|
|
|
# typed: false
|
2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-12-21 20:09:08 +00:00
|
|
|
require "formula"
|
2019-04-17 18:25:08 +09:00
|
|
|
require "cli/parser"
|
2018-12-21 20:09:08 +00:00
|
|
|
|
|
|
|
module Homebrew
|
2020-10-20 12:03:48 +02:00
|
|
|
extend T::Sig
|
|
|
|
|
2018-12-21 20:09:08 +00:00
|
|
|
module_function
|
|
|
|
|
2020-10-20 12:03:48 +02:00
|
|
|
sig { returns(CLI::Parser) }
|
2019-01-30 21:33:03 +00:00
|
|
|
def vendor_gems_args
|
2018-12-21 20:09:08 +00:00
|
|
|
Homebrew::CLI::Parser.new do
|
2021-01-15 15:04:02 -05:00
|
|
|
description <<~EOS
|
2018-12-21 20:09:08 +00:00
|
|
|
Install and commit Homebrew's vendored gems.
|
|
|
|
EOS
|
2020-07-30 18:40:10 +02:00
|
|
|
|
2020-11-21 04:12:33 +01:00
|
|
|
comma_array "--update",
|
|
|
|
description: "Update all vendored Gems to the latest version."
|
2020-11-19 09:22:01 +01:00
|
|
|
|
2021-01-10 14:26:40 -05:00
|
|
|
named_args :none
|
2019-01-30 21:33:03 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-11-21 04:12:33 +01:00
|
|
|
sig { void }
|
2019-01-30 21:33:03 +00:00
|
|
|
def vendor_gems
|
2020-11-19 09:22:01 +01:00
|
|
|
args = vendor_gems_args.parse
|
2018-12-21 20:09:08 +00:00
|
|
|
|
2019-01-08 15:08:21 +00:00
|
|
|
Homebrew.install_bundler!
|
2018-12-21 20:09:08 +00:00
|
|
|
|
2019-03-05 08:26:38 +00:00
|
|
|
ohai "cd #{HOMEBREW_LIBRARY_PATH}"
|
2019-02-21 15:41:42 +00:00
|
|
|
HOMEBREW_LIBRARY_PATH.cd do
|
2020-11-21 04:12:33 +01:00
|
|
|
if args.update
|
2020-11-19 09:22:01 +01:00
|
|
|
ohai "bundle update"
|
2020-11-21 04:12:33 +01:00
|
|
|
safe_system "bundle", "update", *args.update
|
2020-11-19 09:22:01 +01:00
|
|
|
|
|
|
|
ohai "git add Gemfile.lock"
|
|
|
|
system "git", "add", "Gemfile.lock"
|
|
|
|
end
|
|
|
|
|
2018-12-21 20:09:08 +00:00
|
|
|
ohai "bundle install --standalone"
|
2021-06-07 14:51:07 +01:00
|
|
|
safe_system "bundle", "install", "--standalone"
|
2018-12-21 20:09:08 +00:00
|
|
|
|
2019-03-11 12:39:06 +00:00
|
|
|
ohai "bundle pristine"
|
|
|
|
safe_system "bundle", "pristine"
|
|
|
|
|
2019-02-21 15:41:42 +00:00
|
|
|
ohai "git add vendor/bundle"
|
|
|
|
system "git", "add", "vendor/bundle"
|
2018-12-21 20:09:08 +00:00
|
|
|
|
2020-11-02 12:21:18 +00:00
|
|
|
Utils::Git.set_name_email!
|
|
|
|
Utils::Git.setup_gpg!
|
2018-12-21 20:09:08 +00:00
|
|
|
|
|
|
|
ohai "git commit"
|
|
|
|
system "git", "commit", "--message", "brew vendor-gems: commit updates."
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|