Answers:
Gem::Version.new('0.4.1') > Gem::Version.new('0.10.1')
Gem::Version...
语法让我以为我会需要安装一个宝石。但这不是必需的。
Gem::Dependency.new(nil, '~> 1.4.5').match?(nil, '1.4.6beta4')
require 'rubygems'
才能访问Gem
名称空间。从1.9开始,它会自动包含在内。
如果需要检查悲观版本约束,则可以使用Gem :: Dependency,如下所示:
Gem::Dependency.new('', '~> 1.4.5').match?('', '1.4.6beta4')
Gem::Dependency.new('', '~> 1.4.5').match?('', '1.4.6beta4')
class Version < Array
def initialize s
super(s.split('.').map { |e| e.to_i })
end
def < x
(self <=> x) < 0
end
def > x
(self <=> x) > 0
end
def == x
(self <=> x) == 0
end
end
p [Version.new('1.2') < Version.new('1.2.1')]
p [Version.new('1.2') < Version.new('1.10.1')]
vers = (1..3000000).map{|x| "0.0.#{x}"}; 'ok' puts Time.now; vers.map{|v| ComparableVersion.new(v) }.sort.first; puts Time.now # 24 seconds 2013-10-29 13:36:09 -0700 2013-10-29 13:36:33 -0700 => nil puts Time.now; vers.map{|v| Gem::Version.new(v) }.sort.first; puts Time.now # 41 seconds 2013-10-29 13:36:53 -0700 2013-10-29 13:37:34 -0700
代码blob使其丑陋,但基本上,使用此vs Gem :: Version的速度大约快一倍。
您可以使用Versionomy
gem(可在github上找到):
require 'versionomy'
v1 = Versionomy.parse('0.1')
v2 = Versionomy.parse('0.2.1')
v3 = Versionomy.parse('0.44')
v1 < v2 # => true
v2 < v3 # => true
v1 > v2 # => false
v2 > v3 # => false
我会做
a1 = v1.split('.').map{|s|s.to_i}
a2 = v2.split('.').map{|s|s.to_i}
那你可以做
a1 <=> a2
(以及其他所有“常规”比较)。
...如果您想进行<
或>
测试,可以执行例如
(a1 <=> a2) < 0
或者如果您愿意,可以做一些其他的函数包装。
Gem::Version
是前往此处的简单方法:
%w<0.1 0.2.1 0.44>.map {|v| Gem::Version.new v}.max.to_s
=> "0.44"
我遇到了同样的问题,我想要一个没有Gem的版本比较器,并提出了以下内容:
def compare_versions(versionString1,versionString2)
v1 = versionString1.split('.').collect(&:to_i)
v2 = versionString2.split('.').collect(&:to_i)
#pad with zeroes so they're the same length
while v1.length < v2.length
v1.push(0)
end
while v2.length < v1.length
v2.push(0)
end
for pair in v1.zip(v2)
diff = pair[0] - pair[1]
return diff if diff != 0
end
return 0
end
Version
的类,它的一切,我需要:shorts.jeffkreeftmeijer.com/2014/...