36 lines
373 B
Ruby
36 lines
373 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Mastodon
|
|
module Version
|
|
module_function
|
|
|
|
def major
|
|
1
|
|
end
|
|
|
|
def minor
|
|
5
|
|
end
|
|
|
|
def patch
|
|
0
|
|
end
|
|
|
|
def pre
|
|
nil
|
|
end
|
|
|
|
def flags
|
|
'rc1'
|
|
end
|
|
|
|
def to_a
|
|
[major, minor, patch, pre].compact
|
|
end
|
|
|
|
def to_s
|
|
[to_a.join('.'), flags].join
|
|
end
|
|
end
|
|
end
|