Sha256: 7e1c00f4ade39ef162a7b2e6099a96f5ac05a3c916d62928d6fe03dd4c8e694b

Contents?: true

Size: 271 Bytes

Versions: 7

Compression:

Stored size: 271 Bytes

Contents

# encoding: utf-8
# frozen_string_literal: true

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

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
outstand-tty-command-0.10.0 lib/tty/command/printers/null.rb
outstand-tty-command-0.10.0.pre lib/tty/command/printers/null.rb
tty-command-0.9.0 lib/tty/command/printers/null.rb
tty-command-0.8.2 lib/tty/command/printers/null.rb
tty-command-0.8.1 lib/tty/command/printers/null.rb
tty-command-0.8.0 lib/tty/command/printers/null.rb
tty-command-0.7.0 lib/tty/command/printers/null.rb