64 lines
1.2 KiB
Ruby
Raw Normal View History

#: * `irb` [`--examples`] [`--pry`]:
2016-04-08 16:28:43 +02:00
#: Enter the interactive Homebrew Ruby shell.
#:
#: If `--examples` is passed, several examples will be shown.
#: If `--pry` is passed or HOMEBREW_PRY is set, pry will be
#: used instead of irb.
2018-03-24 20:04:45 +05:30
require "cli_parser"
2012-08-31 08:09:50 -04:00
class Symbol
def f(*args)
Formulary.factory(to_s, *args)
2012-08-31 08:09:50 -04:00
end
end
2017-02-23 06:04:32 +01:00
class String
def f(*args)
Formulary.factory(self, *args)
end
end
module Homebrew
2016-09-26 01:44:51 +02:00
module_function
def irb_args
Homebrew::CLI::Parser.new do
2018-03-24 20:04:45 +05:30
switch "--examples"
switch "--pry", env: :pry
end
end
def irb
irb_args.parse
2018-03-24 20:04:45 +05:30
if args.examples?
2014-06-19 19:13:45 -05:00
puts "'v8'.f # => instance of the v8 formula"
2012-08-31 08:09:50 -04:00
puts ":hub.f.installed?"
puts ":lua.f.methods - 1.methods"
puts ":mpd.f.recursive_dependencies.reject(&:installed?)"
return
end
if args.pry?
Homebrew.install_gem_setup_path! "pry"
require "pry"
Pry.config.prompt_name = "brew"
else
require "irb"
end
require "formula"
require "keg"
require "cask/all"
ohai "Interactive Homebrew Shell"
puts "Example commands available with: brew irb --examples"
if args.pry?
Pry.start
else
IRB.start
end
end
end