Class: Billy::Util::UI

Inherits:
Object
  • Object
show all
Defined in:
lib/billy/util/ui.rb

Class Method Summary collapse

Class Method Details

.confirm?(msg = nil) ⇒ Boolean

Returns:

  • (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

.inputObject



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