Remove pre from version, add extra suffix variable (#11407)

This commit is contained in:
Clar Fon 2019-07-26 01:57:27 -04:00 committed by Eugen Rochko
parent ed27803822
commit 91fb945b0e

View file

@ -16,20 +16,20 @@ module Mastodon
2 2
end end
def pre
nil
end
def flags def flags
'' ''
end end
def suffix
''
end
def to_a def to_a
[major, minor, patch, pre].compact [major, minor, patch].compact
end end
def to_s def to_s
[to_a.join('.'), flags].join [to_a.join('.'), flags, suffix].join
end end
def repository def repository