Class: Oldtime::UI::Shell

Inherits:
Oldtime::UI show all
Defined in:
lib/oldtime/ui.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Oldtime::UI

#say

Constructor Details

#initialize(shell) ⇒ Shell

Returns a new instance of Shell.



26
27
28
29
30
# File 'lib/oldtime/ui.rb', line 26

def initialize(shell)
  @shell = shell
  @quiet = false
  @debug = ENV['DEBUG']
end

Instance Attribute Details

#shell=(value) ⇒ Object (writeonly)

Sets the attribute shell

Parameters:

  • value

    the value to set the attribute shell to.



24
25
26
# File 'lib/oldtime/ui.rb', line 24

def shell=(value)
  @shell = value
end

Instance Method Details

#be_quiet!Object



52
53
54
# File 'lib/oldtime/ui.rb', line 52

def be_quiet!
  @quiet = true
end

#confirm(msg) ⇒ Object



40
41
42
# File 'lib/oldtime/ui.rb', line 40

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

#debug(msg) ⇒ Object



32
33
34
# File 'lib/oldtime/ui.rb', line 32

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

#debug!Object



56
57
58
# File 'lib/oldtime/ui.rb', line 56

def debug!
  @debug = true
end

#error(msg) ⇒ Object



48
49
50
# File 'lib/oldtime/ui.rb', line 48

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

#info(msg) ⇒ Object



36
37
38
# File 'lib/oldtime/ui.rb', line 36

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

#warn(msg) ⇒ Object



44
45
46
# File 'lib/oldtime/ui.rb', line 44

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