Class: Rag::UI::Shell
Instance Attribute Summary collapse
-
#shell ⇒ Object
Returns the value of attribute shell.
Instance Method Summary collapse
- #be_quiet! ⇒ Object
- #confirm(msg) ⇒ Object
- #debug(msg) ⇒ Object
- #debug! ⇒ Object
- #error(msg) ⇒ Object
- #info(msg) ⇒ Object
-
#initialize(shell) ⇒ Shell
constructor
A new instance of Shell.
- #warn(msg) ⇒ Object
Methods inherited from Rag::UI
Constructor Details
#initialize(shell) ⇒ Shell
Returns a new instance of Shell.
26 27 28 29 30 |
# File 'lib/rag/ui.rb', line 26 def initialize(shell) @shell = shell @quiet = false @debug = ENV['DEBUG'] end |
Instance Attribute Details
#shell ⇒ Object
Returns the value of attribute shell.
24 25 26 |
# File 'lib/rag/ui.rb', line 24 def shell @shell end |
Instance Method Details
#be_quiet! ⇒ Object
32 33 34 |
# File 'lib/rag/ui.rb', line 32 def be_quiet! @quiet = true end |
#confirm(msg) ⇒ Object
48 49 50 |
# File 'lib/rag/ui.rb', line 48 def confirm(msg) @shell.say(msg, :green) if !@quiet end |
#debug(msg) ⇒ Object
40 41 42 |
# File 'lib/rag/ui.rb', line 40 def debug(msg) @shell.say(msg) if @debug && !@quiet end |
#debug! ⇒ Object
36 37 38 |
# File 'lib/rag/ui.rb', line 36 def debug! @debug = true end |
#error(msg) ⇒ Object
56 57 58 |
# File 'lib/rag/ui.rb', line 56 def error(msg) @shell.say(msg, :red) end |
#info(msg) ⇒ Object
44 45 46 |
# File 'lib/rag/ui.rb', line 44 def info(msg) @shell.say(msg) if !@quiet end |
#warn(msg) ⇒ Object
52 53 54 |
# File 'lib/rag/ui.rb', line 52 def warn(msg) @shell.say(msg, :yellow) end |