mastodon/lib/mastodon/version.rb

53 lines
670 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Mastodon
module Version
module_function
def major
2017-10-08 22:03:44 +02:00
2
end
def minor
2018-03-01 20:50:23 +01:00
3
end
def patch
2018-01-20 16:27:19 +01:00
0
end
def pre
nil
end
2017-07-24 16:21:08 +02:00
def flags
2018-03-09 12:59:58 +01:00
''
2017-07-24 16:21:08 +02:00
end
def to_a
[major, minor, patch, pre].compact
end
def to_s
2017-07-24 16:21:08 +02:00
[to_a.join('.'), flags].join
end
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
end
end