module EY::Serverside::Shell::Helpers

Compatibility with old LoggedOutput where the module was included into the class.

Public Instance Methods

debug(*a) click to toggle source
# File lib/engineyard-serverside/shell/helpers.rb, line 18
def debug(*a)
  shell.debug(*a)
end
info(*a) click to toggle source
# File lib/engineyard-serverside/shell/helpers.rb, line 14
def info(*a)
  shell.info(*a)
end
logged_system(*a) click to toggle source
# File lib/engineyard-serverside/shell/helpers.rb, line 22
def logged_system(*a)
  shell.logged_system(*a)
end
verbose?() click to toggle source
# File lib/engineyard-serverside/shell/helpers.rb, line 6
def verbose?
  shell.verbose?
end
warning(*a) click to toggle source
# File lib/engineyard-serverside/shell/helpers.rb, line 10
def warning(*a)
  shell.warning(*a)
end