module Puter::UI

Public Instance Methods

error(message, color = :red) click to toggle source
# File lib/puter/ui.rb, line 11
def error(message, color = :red)
  say(message, color)
end
info(message, color = :bold) click to toggle source
# File lib/puter/ui.rb, line 3
def info(message, color = :bold)
  say(message, color)
end
remote_stderr(message, color = :orange) click to toggle source
# File lib/puter/ui.rb, line 19
def remote_stderr(message, color = :orange)
  say(message, color)
end
remote_stdout(message, color = :white) click to toggle source
# File lib/puter/ui.rb, line 15
def remote_stdout(message, color = :white)
  say(message, color)
end
warn(message, color = :yellow) click to toggle source
# File lib/puter/ui.rb, line 7
def warn(message, color = :yellow)
  say(message, color)
end