brew/Library/Homebrew/cmd/setup-ruby.rb

22 lines
439 B
Ruby
Raw Permalink Normal View History

# typed: strict
# frozen_string_literal: true
require "abstract_command"
2024-07-15 11:39:56 -04:00
require "shell_command"
module Homebrew
module Cmd
class SetupRuby < AbstractCommand
2024-07-15 11:39:56 -04:00
include ShellCommand
cmd_args do
description <<~EOS
Installs and configures Homebrew's Ruby. If `command` is passed, it will only run Bundler if necessary for that command.
EOS
named_args :command
end
end
end
end