summaryrefslogtreecommitdiff
path: root/lib/net/ssh/multi/version.rb
blob: 9854f320b29d350869f63581b0889ab24a18eb83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'net/ssh/version'

module Net; module SSH; module Multi
  # A trivial class for representing the version of this library.
  class Version < Net::SSH::Version
    # The major component of the library's version
    MAJOR = 1

    # The minor component of the library's version
    MINOR = 2

    # The tiny component of the library's version
    TINY  = 1

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

    # The library's version as a String instance
    STRING = CURRENT.to_s
  end
end; end; end