Class: OneApm::VersionNumber

Inherits:
Object
  • Object
show all
Includes:
Comparable
Defined in:
lib/one_apm/support/version_number.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(version_string) ⇒ VersionNumber

Returns a new instance of VersionNumber.



9
10
11
12
# File 'lib/one_apm/support/version_number.rb', line 9

def initialize(version_string)
  version_string ||= '1.0.0'
  @parts = version_string.split('.').map{|n| n =~ /^\d+$/ ? n.to_i : n}
end

Instance Attribute Details

#partsObject (readonly)

Returns the value of attribute parts.



7
8
9
# File 'lib/one_apm/support/version_number.rb', line 7

def parts
  @parts
end

Instance Method Details

#<=>(other) ⇒ Object



18
19
20
21
# File 'lib/one_apm/support/version_number.rb', line 18

def <=>(other)
  other = self.class.new(other) if other.is_a? String
  self.class.compare(self.parts, other.parts)
end

#eql?(other) ⇒ Boolean

Returns:

  • (Boolean)


31
32
33
# File 'lib/one_apm/support/version_number.rb', line 31

def eql? other
  (self <=> other) == 0
end

#hashObject



27
28
29
# File 'lib/one_apm/support/version_number.rb', line 27

def hash
  @parts.hash
end

#major_versionObject



14
# File 'lib/one_apm/support/version_number.rb', line 14

def major_version; @parts[0]; end

#minor_versionObject



15
# File 'lib/one_apm/support/version_number.rb', line 15

def minor_version; @parts[1]; end

#tiny_versionObject



16
# File 'lib/one_apm/support/version_number.rb', line 16

def tiny_version;  @parts[2]; end

#to_sObject



23
24
25
# File 'lib/one_apm/support/version_number.rb', line 23

def to_s
  @parts.join(".")
end