info: display available formula specs

This commit is contained in:
Jack Nagel 2012-04-05 21:11:49 -05:00
parent b6d44dd38a
commit 6420943552

View File

@ -49,7 +49,15 @@ module Homebrew extend self
def info_formula f
exec 'open', github_info(f) if ARGV.flag? '--github'
puts "#{f.name} #{f.version}"
specs = []
stable = "stable #{f.stable.version}" if f.stable
stable += " (bottled)" if f.bottle and bottles_supported?
specs << stable if stable
specs << "devel #{f.devel.version}" if f.devel
specs << "HEAD" if f.head
puts "#{f.name}: #{specs*', '}"
puts f.homepage
if f.keg_only?