2017-04-21 02:30:59 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Mastodon
|
2017-04-27 14:22:19 +01:00
|
|
|
module Version
|
|
|
|
module_function
|
|
|
|
|
|
|
|
def major
|
2017-10-08 21:03:44 +01:00
|
|
|
2
|
2017-04-27 14:22:19 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def minor
|
2017-12-06 15:13:32 +00:00
|
|
|
1
|
2017-04-27 14:22:19 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def patch
|
2017-10-08 21:03:44 +01:00
|
|
|
0
|
2017-04-27 14:22:19 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def pre
|
2017-12-15 18:14:57 +00:00
|
|
|
''
|
2017-04-27 14:22:19 +01:00
|
|
|
end
|
|
|
|
|
2017-07-24 15:21:08 +01:00
|
|
|
def flags
|
2017-10-18 12:53:56 +01:00
|
|
|
''
|
2017-07-24 15:21:08 +01:00
|
|
|
end
|
|
|
|
|
2017-04-27 14:22:19 +01:00
|
|
|
def to_a
|
|
|
|
[major, minor, patch, pre].compact
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_s
|
2017-07-24 15:21:08 +01:00
|
|
|
[to_a.join('.'), flags].join
|
2017-04-27 14:22:19 +01:00
|
|
|
end
|
2017-08-22 21:54:19 +01:00
|
|
|
|
|
|
|
def source_base_url
|
|
|
|
'https://github.com/tootsuite/mastodon'
|
|
|
|
end
|
|
|
|
|
|
|
|
# specify git tag or commit hash here
|
|
|
|
def source_tag
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def source_url
|
|
|
|
if source_tag
|
|
|
|
"#{source_base_url}/tree/#{source_tag}"
|
|
|
|
else
|
|
|
|
source_base_url
|
|
|
|
end
|
|
|
|
end
|
2017-04-27 14:22:19 +01:00
|
|
|
end
|
2017-04-21 02:30:59 +01:00
|
|
|
end
|