diff options
| author | BrewTestBot | 2015-08-03 13:09:07 +0100 | 
|---|---|---|
| committer | Mike McQuaid | 2015-08-03 13:22:35 +0100 | 
| commit | 13d544e11e92ba8ea3788723432046f8dfe4adf9 (patch) | |
| tree | e6da18436d9ce956e6fbe80e3185c67cf3b58808 /Library/Homebrew/cmd/info.rb | |
| parent | 3b68215be793774fafd9ce124a2065f5968f50e5 (diff) | |
| download | brew-13d544e11e92ba8ea3788723432046f8dfe4adf9.tar.bz2 | |
Core files style updates.
Closes Homebrew/homebrew#42354.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Homebrew/cmd/info.rb')
| -rw-r--r-- | Library/Homebrew/cmd/info.rb | 36 | 
1 files changed, 18 insertions, 18 deletions
| diff --git a/Library/Homebrew/cmd/info.rb b/Library/Homebrew/cmd/info.rb index 332168ee7..3117ebf2c 100644 --- a/Library/Homebrew/cmd/info.rb +++ b/Library/Homebrew/cmd/info.rb @@ -12,7 +12,7 @@ module Homebrew      # awhile around for compatibility      if ARGV.json == "v1"        print_json -    elsif ARGV.flag? '--github' +    elsif ARGV.flag? "--github"        exec_browser(*ARGV.formulae.map { |f| github_info(f) })      else        print_info @@ -26,7 +26,7 @@ module Homebrew          puts "#{count} keg#{plural(count)}, #{HOMEBREW_CELLAR.abv}"        end      else -      ARGV.named.each_with_index do |f,i| +      ARGV.named.each_with_index do |f, i|          puts unless i == 0          begin            info_formula Formulary.factory(f) @@ -44,13 +44,13 @@ module Homebrew    def print_json      ff = if ARGV.include? "--all" -           Formula -         elsif ARGV.include? "--installed" -           Formula.installed -         else -           ARGV.formulae -         end -    json = ff.map {|f| f.to_hash} +      Formula +    elsif ARGV.include? "--installed" +      Formula.installed +    else +      ARGV.formulae +    end +    json = ff.map(&:to_hash)      puts Utils::JSON.dump(json)    end @@ -62,7 +62,7 @@ module Homebrew      end    end -  def github_info f +  def github_info(f)      if f.tap?        user, repo = f.tap.split("/", 2)        path = f.path.relative_path_from(HOMEBREW_LIBRARY.join("Taps", f.tap)) @@ -76,7 +76,7 @@ module Homebrew      end    end -  def info_formula f +  def info_formula(f)      specs = []      if stable = f.stable @@ -93,7 +93,7 @@ module Homebrew      specs << "HEAD" if f.head -    puts "#{f.full_name}: #{specs*', '}#{' (pinned)' if f.pinned?}" +    puts "#{f.full_name}: #{specs*", "}#{" (pinned)" if f.pinned?}"      puts f.desc if f.desc @@ -107,12 +107,12 @@ module Homebrew      end      conflicts = f.conflicts.map(&:name).sort! -    puts "Conflicts with: #{conflicts*', '}" unless conflicts.empty? +    puts "Conflicts with: #{conflicts*", "}" unless conflicts.empty?      if f.rack.directory?        kegs = f.rack.subdirs.map { |keg| Keg.new(keg) }.sort_by(&:version)        kegs.each do |keg| -        puts "#{keg} (#{keg.abv})#{' *' if keg.linked?}" +        puts "#{keg} (#{keg.abv})#{" *" if keg.linked?}"          tab = Tab.for_keg(keg).to_s          puts "  #{tab}" unless tab.empty?        end @@ -125,7 +125,7 @@ module Homebrew      unless f.deps.empty?        ohai "Dependencies" -      %w{build required recommended optional}.map do |type| +      %w[build required recommended optional].map do |type|          deps = f.deps.send(type).uniq          puts "#{type.capitalize}: #{decorate_dependencies deps}" unless deps.empty?        end @@ -137,10 +137,10 @@ module Homebrew      end      c = Caveats.new(f) -    ohai 'Caveats', c.caveats unless c.empty? +    ohai "Caveats", c.caveats unless c.empty?    end -  def decorate_dependencies dependencies +  def decorate_dependencies(dependencies)      # necessary for 1.8.7 unicode handling since many installs are on 1.8.7      tick = ["2714".hex].pack("U*")      cross = ["2718".hex].pack("U*") @@ -153,7 +153,7 @@ module Homebrew          color = Tty.red          symbol = cross        end -      if ENV['HOMEBREW_NO_EMOJI'] +      if ENV["HOMEBREW_NO_EMOJI"]          colored_dep = "#{color}#{dep}"        else          colored_dep = "#{dep} #{color}#{symbol}" | 
