Class: Billy::Util::UI
- Inherits:
-
Object
- Object
- Billy::Util::UI
- Defined in:
- lib/billy/util/ui.rb
Class Method Summary collapse
- .confirm?(msg = nil) ⇒ Boolean
- .err(msg) ⇒ Object
- .green(text) ⇒ Object
- .inform(msg) ⇒ Object
- .input ⇒ Object
- .red(text) ⇒ Object
- .succ(msg) ⇒ Object
Class Method Details
.confirm?(msg = nil) ⇒ Boolean
21 22 23 24 |
# File 'lib/billy/util/ui.rb', line 21 def confirm?( msg = nil ) inform( msg ) if !msg.nil? input == "y" end |
.err(msg) ⇒ Object
34 35 36 |
# File 'lib/billy/util/ui.rb', line 34 def err( msg ) inform red msg end |
.green(text) ⇒ Object
13 14 15 |
# File 'lib/billy/util/ui.rb', line 13 def green( text ) text.green end |
.inform(msg) ⇒ Object
26 27 28 |
# File 'lib/billy/util/ui.rb', line 26 def inform( msg ) puts "#{msg.to_s}\n" end |
.input ⇒ Object
17 18 19 |
# File 'lib/billy/util/ui.rb', line 17 def input gets.chomp.downcase end |
.red(text) ⇒ Object
9 10 11 |
# File 'lib/billy/util/ui.rb', line 9 def red( text ) text.red end |
.succ(msg) ⇒ Object
30 31 32 |
# File 'lib/billy/util/ui.rb', line 30 def succ( msg ) inform green msg end |