class UserAgent::Version
def self.new(obj)
def self.new(obj) case obj when Version obj when String super else raise ArgumentError, "invalid value for Version: #{obj.inspect}" end end
def <=>(other)
def <=>(other) case other when Version if @comparable ([0]*6).zip(to_a, other.to_a).each do |dump, a, b| a ||= 0 b ||= 0 if a.is_a?(String) && b.is_a?(Integer) return -1 elsif a.is_a?(Integer) && b.is_a?(String) return 1 elsif a == b next else return a <=> b end end 0 elsif to_s == other.to_s return 0 else return -1 end when String self <=> self.class.new(other) else nil end end
def ==(other)
def ==(other) case other when Version eql?(other) when String eql?(self.class.new(other)) else false end end
def eql?(other)
def eql?(other) other.is_a?(self.class) && to_s == other.to_s end
def initialize(str)
def initialize(str) @str = str if str =~ /^\d+$/ || str =~ /^\d+\./ @sequences = str.scan(/\d+|[A-Za-z][0-9A-Za-z-]*$/).map { |s| s =~ /^\d+$/ ? s.to_i : s } @comparable = true else @sequences = [str] @comparable = false end end
def inspect
def inspect "#<#{self.class} #{to_s}>" end
def to_a
def to_a @sequences.dup end
def to_s
def to_s to_str end
def to_str
def to_str @str.dup end