aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/compat/utils.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Homebrew/compat/utils.rb')
-rw-r--r--Library/Homebrew/compat/utils.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/Library/Homebrew/compat/utils.rb b/Library/Homebrew/compat/utils.rb
index 7b529f04e..ed6063472 100644
--- a/Library/Homebrew/compat/utils.rb
+++ b/Library/Homebrew/compat/utils.rb
@@ -16,3 +16,8 @@ module Tty
reset.bold
end
end
+
+def puts_columns(items)
+ odeprecated "puts_columns", "puts Formatter.columns"
+ puts Formatter.columns(items)
+end