Sha256: 92181f1352ac91bd7611a2cda993046e77efffbf8444e8fb043f39dedd9a3a16
Contents?: true
Size: 454 Bytes
Versions: 7
Compression:
Stored size: 454 Bytes
Contents
# encoding: utf-8 require 'tty/command/printers/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.print(message) end end # Progress end # Printers end # Command end # TTY
Version data entries
7 entries across 7 versions & 1 rubygems