Sha256: f66f8f2bd69c2eca657d8c813aa0eea12c923d4a39ef4957e364847772243ef2
Contents?: true
Size: 927 Bytes
Versions: 1
Compression:
Stored size: 927 Bytes
Contents
module Adhearsion #:nodoc: module VERSION #:nodoc: MAJOR = 1 unless defined? MAJOR MINOR = 2 unless defined? MINOR TINY = 4 unless defined? TINY STRING = [MAJOR, MINOR, TINY].join('.') unless defined? STRING end class PkgVersion include Comparable attr_reader :major, :minor, :revision def initialize(version="") version = "" if version.nil? @major, @minor, @revision, @patchlevel = version.split(".", 4).map(&:to_i) @major = 0 unless @major end def <=>(other) return @major <=> other.major if ((@major <=> other.major) != 0) return @minor <=> other.minor if ((@minor <=> other.minor) != 0) return @revision <=> other.revision if ((@revision <=> other.revision) != 0) return 0 end def self.sort self.sort!{|a,b| a <=> b} end def to_s @major.to_s + "." + @minor.to_s + "." + @revision.to_s end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
adhearsion-1.2.4 | lib/adhearsion/version.rb |