2012-08-06 14:41:55 -04:00
|
|
|
module Homebrew extend self
|
|
|
|
def irb
|
|
|
|
if ARGV.include? "--help"
|
|
|
|
puts "Formula.factory('ace').installed?"
|
|
|
|
else
|
|
|
|
ohai "Interactive Homebrew Shell"
|
|
|
|
puts "Example commands available with: brew irb --help"
|
2012-08-21 09:51:28 -04:00
|
|
|
require 'formula'
|
|
|
|
require 'keg'
|
|
|
|
require 'irb'
|
|
|
|
IRB.start
|
2012-08-06 14:41:55 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|