Sha256: 133c120c5745d0c4fbf8f0540f372084d68faa78ad18e161baac2c581f28c490

Contents?: true

Size: 438 Bytes

Versions: 1

Compression:

Stored size: 438 Bytes

Contents

# encoding: utf-8

require_relative 'abstract'

module TTY
  class Command
    module Printers
      class Quiet < Abstract
        attr_reader :output, :options

        def print_command_start(cmd)
          # quiet
        end

        def print_command_exit(cmd, *args)
          # quiet
        end

        def write(message)
          output << message
        end
      end # Progress
    end # Printers
  end # Command
end # TTY

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tty-command-0.7.0 lib/tty/command/printers/quiet.rb