Sha256: 75a9ab23ecb16eebf84ce01b656c4a4259d14349ef931f18b45bae59ec66a47c

Contents?: true

Size: 367 Bytes

Versions: 3

Compression:

Stored size: 367 Bytes

Contents

require 'net/ssh/version'

module Net; class SCP

  # Describes the current version of the Net::SCP library.
  class Version < Net::SSH::Version
    MAJOR = 1
    MINOR = 1
    TINY  = 0

    # The current version, as a Version instance
    CURRENT = new(MAJOR, MINOR, TINY)

    # The current version, as a String instance
    STRING  = CURRENT.to_s
  end

end; end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
vagrant-shell-0.2.6 vendor/bundle/gems/net-scp-1.1.0/lib/net/scp/version.rb
vagrant-shell-0.2.5 vendor/bundle/gems/net-scp-1.1.0/lib/net/scp/version.rb
net-scp-1.1.0 lib/net/scp/version.rb