Class: Serverspec::Type::Package::Version

Inherits:
Object
  • Object
show all
Includes:
Comparable
Defined in:
lib/serverspec/type/package.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(val) ⇒ Version

Returns a new instance of Version.



26
27
28
29
30
31
32
33
# File 'lib/serverspec/type/package.rb', line 26

def initialize(val)
  matches = val.match(/^(?:(\d+):)?(\d[0-9a-zA-Z.+:~-]*)$/)
  if matches.nil?
    raise ArgumentError, "Malformed version number string #{val}"
  end
  @epoch   = matches[1].to_i
  @version = matches[2].to_s
end

Instance Attribute Details

#epochObject (readonly)

Returns the value of attribute epoch.



24
25
26
# File 'lib/serverspec/type/package.rb', line 24

def epoch
  @epoch
end

#versionObject (readonly)

Returns the value of attribute version.



24
25
26
# File 'lib/serverspec/type/package.rb', line 24

def version
  @version
end

Instance Method Details

#<=>(other) ⇒ Object



35
36
37
38
39
40
41
# File 'lib/serverspec/type/package.rb', line 35

def <=>(other)
  other = Version.new(other) if other.is_a?(String)
  rv    = @epoch <=> other.epoch
  return rv if rv != 0

  self.ver_array <=> other.ver_array
end

#ver_arrayObject



43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# File 'lib/serverspec/type/package.rb', line 43

def ver_array
  val = @version
  re  = /^(?:(\d+)|(\D+))(.*)$/
  res = []
  until val.empty?
    matches = val.match(re)
    if matches[1].nil?
      # String
      matches[2].to_s.each_byte do |b|
        code_point = defined?("~".ord) ? "~".ord : ?~
        res << ((b == code_point) ? -2 : b)
      end
    else
      # Digits
      res << matches[1].to_i
    end
    val = matches[3].to_s
  end
  res << -1
end