Class: Wtch::UI::Shell

Inherits:
Wtch::UI show all
Defined in:
lib/wtch/ui.rb

Instance Method Summary collapse

Constructor Details

#initialize(shell) ⇒ Shell

Returns a new instance of Shell.



16
17
18
19
# File 'lib/wtch/ui.rb', line 16

def initialize(shell)
  @shell = shell
  @quiet = false
end

Instance Method Details

#be_quiet!Object



41
42
43
# File 'lib/wtch/ui.rb', line 41

def be_quiet!
  @quiet = true
end

#confirm(msg) ⇒ Object



29
30
31
# File 'lib/wtch/ui.rb', line 29

def confirm(msg)
  @shell.say(msg, :green) if !@quiet
end

#debug(msg) ⇒ Object



21
22
23
# File 'lib/wtch/ui.rb', line 21

def debug(msg)
  @shell.say(msg) if ENV['DEBUG'] && !@quiet
end

#error(msg) ⇒ Object



37
38
39
# File 'lib/wtch/ui.rb', line 37

def error(msg)
  @shell.say(msg, :red)
end

#info(msg) ⇒ Object



25
26
27
# File 'lib/wtch/ui.rb', line 25

def info(msg)
  @shell.say(msg) if !@quiet
end

#warn(msg) ⇒ Object



33
34
35
# File 'lib/wtch/ui.rb', line 33

def warn(msg)
  @shell.say(msg, :yellow)
end