aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/info.rb10
1 files changed, 9 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/info.rb b/Library/Homebrew/cmd/info.rb
index 3fac9f434..079794f27 100644
--- a/Library/Homebrew/cmd/info.rb
+++ b/Library/Homebrew/cmd/info.rb
@@ -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?