Class: Cumuli::Spawner::StdoutLogger

Inherits:
Object
  • Object
show all
Defined in:
lib/cumuli/spawner/stdout_logger.rb

Constant Summary collapse

GRAY =
"\033[0;37m"
RESET =
"\033[0m"

Instance Method Summary collapse

Instance Method Details

#add_spaceObject



11
12
13
# File 'lib/cumuli/spawner/stdout_logger.rb', line 11

def add_space
  puts ''
end


7
8
9
# File 'lib/cumuli/spawner/stdout_logger.rb', line 7

def print(message)
  puts "Cumuli: #{GRAY}#{message}#{RESET}"
end