Created
July 8, 2016 01:29
-
-
Save edgar/f5e06efc4dd3f043e11d9d4ac619daca to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
v1 = '0.3.0' | |
v2 = '0.3' | |
a1 = v1.split('.').map{|v| v.to_i} | |
a2 = v2.split('.').map{|v| v.to_i} | |
(a1 <=> a2) == 0 # v1 == v2 | |
=> false | |
(a1 <=> a2) > 0 # v1 > v2 | |
=> true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment