public
Description: Pure Ruby implementation of an SSH (protocol 2) client
Homepage: http://rubyforge.org/projects/net-ssh
Clone URL: git://github.com/jamis/net-ssh.git
net-ssh / lib / net / ssh / version.rb
100644 63 lines (51 sloc) 1.901 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
module Net; module SSH
  # A class for describing the current version of a library. The version
  # consists of three parts: the +major+ number, the +minor+ number, and the
  # +tiny+ (or +patch+) number.
  #
  # Two Version instances may be compared, so that you can test that a version
  # of a library is what you require:
  #
  # require 'net/ssh/version'
  #
  # if Net::SSH::Version::CURRENT < Net::SSH::Version[2,1,0]
  # abort "your software is too old!"
  # end
  class Version
    include Comparable
 
    # A convenience method for instantiating a new Version instance with the
    # given +major+, +minor+, and +tiny+ components.
    def self.[](major, minor, tiny)
      new(major, minor, tiny)
    end
 
    attr_reader :major, :minor, :tiny
 
    # Create a new Version object with the given components.
    def initialize(major, minor, tiny)
      @major, @minor, @tiny = major, minor, tiny
    end
 
    # Compare this version to the given +version+ object.
    def <=>(version)
      to_i <=> version.to_i
    end
 
    # Converts this version object to a string, where each of the three
    # version components are joined by the '.' character. E.g., 2.0.0.
    def to_s
      @to_s ||= [@major, @minor, @tiny].join(".")
    end
 
    # Converts this version to a canonical integer that may be compared
    # against other version objects.
    def to_i
      @to_i ||= @major * 1_000_000 + @minor * 1_000 + @tiny
    end
 
    # The major component of this version of the Net::SSH library
    MAJOR = 2
 
    # The minor component of this version of the Net::SSH library
    MINOR = 0
 
    # The tiny component of this version of the Net::SSH library
    TINY = 3
 
    # The current version of the Net::SSH library as a Version instance
    CURRENT = new(MAJOR, MINOR, TINY)
 
    # The current version of the Net::SSH library as a String
    STRING = CURRENT.to_s
  end
end; end