1
0
puyopuyotetr.is/lib/mastodon/version.rb

53 lines
669 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Mastodon
module Version
module_function
def major
2017-10-09 05:03:44 +09:00
2
end
def minor
2017-12-07 00:13:32 +09:00
1
end
def patch
2017-10-09 05:03:44 +09:00
0
end
def pre
2017-12-16 03:14:57 +09:00
''
end
2017-07-24 23:21:08 +09:00
def flags
2017-10-18 20:53:56 +09:00
''
2017-07-24 23:21:08 +09:00
end
def to_a
[major, minor, patch, pre].compact
end
def to_s
2017-07-24 23:21:08 +09: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