Class: Homebrew::DevCmd::Irb Private

Inherits:
AbstractCommand show all
Defined in:
sorbet/rbi/dsl/homebrew/dev_cmd/irb.rbi,
dev-cmd/irb.rb

Overview

This class is part of a private API. This class may only be used in the Homebrew/brew repository. Third parties should avoid using this class if possible, as it may be removed or changed without warning.

DO NOT EDIT MANUALLY This is an autogenerated file for dynamic methods in Homebrew::DevCmd::Irb. Please instead update this file by running bin/tapioca dsl Homebrew::DevCmd::Irb.

Defined Under Namespace

Classes: Args

Instance Method Summary collapse

Methods inherited from AbstractCommand

command, command_name, dev_cmd?, parser

Constructor Details

#initialize(argv = nil) ⇒ void

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

work around IRB modifying ARGV.

Parameters:



49
# File 'dev-cmd/irb.rb', line 49

def initialize(argv = nil) = super(argv || ARGV.dup.freeze)

Instance Method Details

#argsHomebrew::DevCmd::Irb::Args

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.



9
# File 'sorbet/rbi/dsl/homebrew/dev_cmd/irb.rbi', line 9

def args; end

#runvoid

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

This method returns an undefined value.



52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# File 'dev-cmd/irb.rb', line 52

def run
  clean_argv

  if args.examples?
    puts <<~EOS
      'v8'.f # => instance of the v8 formula
      :hub.f.latest_version_installed?
      :lua.f.methods - 1.methods
      :mpd.f.recursive_dependencies.reject(&:installed?)

      'vlc'.c # => instance of the vlc cask
      :tsh.c.livecheckable?
    EOS
    return
  end

  if args.pry?
    Homebrew.install_bundler_gems!(groups: ["pry"])
    require "pry"
  else
    require "irb"
  end

  require "formula"
  require "keg"
  require "cask"

  ohai "Interactive Homebrew Shell", "Example commands available with: `brew irb --examples`"
  if args.pry?
    Pry.config.should_load_rc = false # skip loading .pryrc
    Pry.config.history_file = "#{Dir.home}/.brew_pry_history"
    Pry.config.prompt_name = "brew"

    Pry.start
  else
    ENV["IRBRC"] = (HOMEBREW_LIBRARY_PATH/"brew_irbrc").to_s

    IRB.start
  end
end