You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# frozen_string_literal: true |
|
|
|
module Mastodon |
|
module Version |
|
module_function |
|
|
|
def major |
|
1 |
|
end |
|
|
|
def minor |
|
4 |
|
end |
|
|
|
def patch |
|
0 |
|
end |
|
|
|
def pre |
|
3 |
|
end |
|
|
|
def to_a |
|
[major, minor, patch, pre].compact |
|
end |
|
|
|
def to_s |
|
to_a.join('.') |
|
end |
|
end |
|
end
|
|
|