piotrmurach/tty-command

View on GitHub
lib/tty/command/printers/null.rb

Summary

Maintainability
A
0 mins
Test Coverage
require_relative "abstract"

module TTY
  class Command
    module Printers
      class Null < Abstract
        def write(*)
          # Do nothing
        end
      end # Null
    end # Printers
  end # Command
end # TTY