blob: 8904f0f2b418c7123aa246c8d704c1a96690dcd8 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 | module Tty
  module_function
  def white
    odeprecated "Tty.white", "Tty.reset.bold"
    reset.bold
  end
end
def puts_columns(items)
  odeprecated "puts_columns", "puts Formatter.columns"
  puts Formatter.columns(items)
end
def plural(n, s = "s")
  odeprecated "#plural", "Formatter.pluralize"
  (n == 1) ? "" : s
end
 |