diff options
| author | Markus Reiter | 2016-10-02 20:39:43 +0200 | 
|---|---|---|
| committer | Markus Reiter | 2016-10-15 17:13:38 +0200 | 
| commit | 198bf4d3bdeaf3047f9af80788ea18cd192541af (patch) | |
| tree | 613f8ec02a60b15ff12bb981d75759d54dbbee3c /Library/Homebrew/cmd/install.rb | |
| parent | 429327cac8b75118087400fc9b5ffed4c4ce83ec (diff) | |
| download | brew-198bf4d3bdeaf3047f9af80788ea18cd192541af.tar.bz2 | |
Convert `puts_columns` to `puts Formatter.columns`.
Diffstat (limited to 'Library/Homebrew/cmd/install.rb')
| -rw-r--r-- | Library/Homebrew/cmd/install.rb | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/cmd/install.rb b/Library/Homebrew/cmd/install.rb index 209fe8bad..2c027a52e 100644 --- a/Library/Homebrew/cmd/install.rb +++ b/Library/Homebrew/cmd/install.rb @@ -183,7 +183,7 @@ module Homebrew            puts "To install it, run:\n  brew install #{formulae_search_results.first}"          else            puts "These similarly named formulae were found:" -          puts_columns(formulae_search_results) +          puts Formatter.columns(formulae_search_results)            puts "To install one of them, run (for example):\n  brew install #{formulae_search_results.first}"          end @@ -198,7 +198,7 @@ module Homebrew            puts "To install it, run:\n  brew install #{taps_search_results.first}"          else            puts "These formulae were found in taps:" -          puts_columns(taps_search_results) +          puts Formatter.columns(taps_search_results)            puts "To install one of them, run (for example):\n  brew install #{taps_search_results.first}"          end        end  | 
