glitch-soc/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
1
end
def minor
2017-09-02 19:12:05 -04:00
6
end
def patch
2017-09-15 21:08:29 -04:00
1
end
def pre
2017-05-28 13:30:38 -04:00
nil
end
2017-07-24 10:21:08 -04:00
def flags
2017-09-10 09:10:03 -04:00
''
2017-07-24 10:21:08 -04:00
end
def to_a
[major, minor, patch, pre].compact
end
def to_s
2017-07-24 10:21:08 -04: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