mrzasa/call_logger

View on GitHub
lib/call_logger/logger.rb

Summary

Maintainability
A
0 mins
Test Coverage
module CallLogger
  # Simple puts logger
  class Logger
    def call(message)
      puts message
    end
  end
end