Sha256: 94b8892132a59c86ccca6ad580a79e16beef42a49621057fa786e15d25768012

Contents?: true

Size: 480 Bytes

Versions: 4

Compression:

Stored size: 480 Bytes

Contents

#--
# Copyright (c) 2023 Jeremy Hinegardner
# All rights reserved.  See LICENSE and/or COPYING for details.
#++

require 'libsql/taps/io'

module ::Libsql::Taps
  #
  # Class provide an IO tap that can write to $stdout
  #
  class Stdout < ::Libsql::Taps::IO
    def initialize
      super( $stdout )
    end
  end

  #
  # This class provide an IO tap that can write to $stderr
  #
  class Stderr < ::Libsql::Taps::IO
    def initialize
      super( $stderr )
    end
  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
libsql-0.1.0-x64-mingw-ucrt lib/libsql/taps/console.rb
libsql-0.1.0-x64-mingw32 lib/libsql/taps/console.rb
libsql-0.1.0-x86-mingw32 lib/libsql/taps/console.rb
libsql-0.1.0 lib/libsql/taps/console.rb