Skip to content
Snippets Groups Projects
utils.rb 426 B
Newer Older
def shell_profile
Mike McQuaid's avatar
Mike McQuaid committed
  # odeprecated "shell_profile", "Utils::Shell.profile"
  Utils::Shell.profile

module Tty
  module_function

  def white
Mike McQuaid's avatar
Mike McQuaid committed
    odeprecated "Tty.white", "Tty.reset.bold"

def puts_columns(items)
  odeprecated "puts_columns", "puts Formatter.columns"
  puts Formatter.columns(items)
end
Markus Reiter's avatar
Markus Reiter committed

def plural(n, s = "s")
  odeprecated "#plural", "Formatter.pluralize"
  (n == 1) ? "" : s
Markus Reiter's avatar
Markus Reiter committed
end