From fe0c57cd0fadf9d476dbcfc86ae688a2b90dd7d0 Mon Sep 17 00:00:00 2001 From: Baptiste Fontaine Date: Fri, 2 Jan 2015 15:11:24 +0100 Subject: [PATCH] brew irb --help replaced with --examples The --help flag is intercepted by brew.rb and prints the global usage string. `irb` is never called when `brew irb --help` is executed. Closes Homebrew/homebrew#35466. Signed-off-by: Jack Nagel --- Library/Homebrew/cmd/irb.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/cmd/irb.rb b/Library/Homebrew/cmd/irb.rb index 32a3bfc6d9..b7832c492c 100644 --- a/Library/Homebrew/cmd/irb.rb +++ b/Library/Homebrew/cmd/irb.rb @@ -15,14 +15,14 @@ end module Homebrew def irb - if ARGV.include? "--help" + if ARGV.include? "--examples" puts "'v8'.f # => instance of the v8 formula" puts ":hub.f.installed?" puts ":lua.f.methods - 1.methods" puts ":mpd.f.recursive_dependencies.reject(&:installed?)" else ohai "Interactive Homebrew Shell" - puts "Example commands available with: brew irb --help" + puts "Example commands available with: brew irb --examples" IRB.start end end