Sha256: 5b7e4f10022072ff1fd39b6250129ca4c78538388b6daa2213ab64610afe7c56

Contents?: true

Size: 961 Bytes

Versions: 1

Compression:

Stored size: 961 Bytes

Contents

#--
# =============================================================================
# Copyright (c) 2004,2005 Jamis Buck (jamis@37signals.com)
# 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
# =============================================================================
#++

module Net
  module SSH
    module Version

      MAJOR = 1
      MINOR = 0
      TINY  = 7

      STRING = [ MAJOR, MINOR, TINY ].join( "." )

    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
net-ssh-1.0.7 lib/net/ssh/version.rb