Sha256: 381a1812cb952e1c221dac79929f5dae76c926d051fb07f1501b0e0c40f2b03d
Contents?: true
Size: 1.13 KB
Versions: 5
Compression:
Stored size: 1.13 KB
Contents
#-- # ============================================================================= # Copyright (c) 2004,2005 Jamis Buck (jamis_buck@byu.edu) # All rights reserved. # # This source file is distributed as part of the Net::SSH Secure Shell Client # library for Ruby. This file (and the library as a whole) may be used only as # allowed by either the BSD license, or the Ruby license (or, by association # with the Ruby license, the GPL). See the "doc" subdirectory of the Net::SSH # distribution for the texts of these licenses. # ----------------------------------------------------------------------------- # net-ssh website : http://net-ssh.rubyforge.org # project website: http://rubyforge.org/projects/net-ssh # ============================================================================= #++ require 'net/ssh/transport/compress/compressor' module Net module SSH module Transport module Compress # The "none" compression algorithm. class NoneCompressor < Compressor # Simply returns the argument, unaltered. def compress( text ) text end end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems