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
1
end
def minor
2017-09-03 01:12:05 +02:00
6
end
def patch
2017-09-16 03:08:29 +02:00
1
end
def pre
2017-05-28 19:30:38 +02:00
nil
end
2017-07-24 16:21:08 +02:00
def flags
2017-09-10 15:10:03 +02: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