It's very easy to compare arrays in ruby, assuming the native <=> comparison works for every element of the array. You could do something like this, if all your arrays were numerics separated by . (or using the natural-order comparison library mentioned above, to support version components like 1a25):
#!/usr/bin/ruby
versions = ["1.2", "1.2", "1.2.3", "0.1", "0.2.1", "0.44"]
# This def taken from http://david-burger.blogspot.com/2008/09/generating-combinations-in-ruby-and_21.html
def generate_combinations(array, r)
n = array.length
indices = (0...r).to_a
final = (n - r...n).to_a
while indices != final
yield indices.map {|k| array[k]}
i = r - 1
while indices[i] == n - r + i
i -= 1
end
indices[i] += 1
(i + 1...r).each do |j|
indices[j] = indices[i] + j - i
end
end
yield indices.map {|k| array[k]}
end
# This is the real 'magic' - http://ruby-doc.org/core/classes/Array.html#M002204
def version_compare(first, second)
return first.split('.') <=> second.split('.')
end
def format_comparison(first, second)
compared = version_compare(first,second)
relation = case compared
when 0: "equal to"
when 1: "greater than"
when -1: "less than"
end
return "#{first} is #{relation} #{second}"
end
generate_combinations(versions, 2) do |pair|
puts format_comparison(pair[0], pair[1])
puts format_comparison(pair[1], pair[0])
end