File: version.rb

package info (click to toggle)
ruby-net-sftp 1%3A2.1.2-4
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 576 kB
  • ctags: 951
  • sloc: ruby: 5,019; makefile: 4
file content (18 lines) | stat: -rw-r--r-- 370 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'net/ssh/version'

module Net; module SFTP

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

    # 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