socialchorus/cumuli

View on GitHub
lib/cumuli/spawner/stdout_logger.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Cumuli
  module Spawner
    class StdoutLogger
      GRAY = "\033[0;37m"
      RESET = "\033[0m"

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

      def add_space
        puts ''
      end
    end
  end
end