Class: Yawast::Utilities

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

Class Method Summary collapse

Class Method Details

.puts_error(msg) ⇒ Object



9
10
11
# File 'lib/util.rb', line 9

def self.puts_error(msg)
  puts_msg('[E]'.red, msg)
end

.puts_info(msg) ⇒ Object



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

def self.puts_info(msg)
  puts_msg('[I]'.green, msg)
end

.puts_msg(type, msg) ⇒ Object



5
6
7
# File 'lib/util.rb', line 5

def self.puts_msg(type, msg)
  puts "#{type} #{msg}"
end

.puts_vuln(msg) ⇒ Object



13
14
15
# File 'lib/util.rb', line 13

def self.puts_vuln(msg)
  puts_msg('[V]'.magenta, msg)
end

.puts_warn(msg) ⇒ Object



17
18
19
# File 'lib/util.rb', line 17

def self.puts_warn(msg)
  puts_msg('[W]'.yellow, msg)
end