mastodon/lib/mastodon/version.rb

65 lines
1.1 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
module Mastodon
module Version
module_function
def major
2017-10-08 16:03:44 -04:00
2
end
def minor
2020-01-21 02:08:23 -05:00
99
end
def patch
2019-06-09 09:53:08 -04:00
0
end
def pre
2019-08-09 22:25:04 -04:00
666
end
2017-07-24 10:21:08 -04:00
def flags
2020-01-21 02:08:23 -05:00
''
2017-07-24 10:21:08 -04:00
end
def to_a
[major, minor, patch, pre].compact
end
def suffix
2019-08-09 22:25:04 -04:00
'+monsterfork'
end
def to_s
[to_a.join('.'), flags, suffix].join
end
def repository
2019-08-09 22:25:04 -04:00
ENV.fetch('GITHUB_REPOSITORY') { 'monsterpit/mastodon' }
end
def source_base_url
2019-08-09 22:25:04 -04:00
ENV.fetch('SOURCE_BASE_URL') { "https://git.multiple-creature.party/#{repository}" }
end
# specify git tag or commit hash here
def source_tag
ENV.fetch('SOURCE_TAG') { nil }
end
def source_url
if source_tag
"#{source_base_url}/tree/#{source_tag}"
else
source_base_url
end
end
def user_agent
@user_agent ||= "#{HTTP::Request::USER_AGENT} (Mastodon/#{Version}; +http#{Rails.configuration.x.use_https ? 's' : ''}://#{Rails.configuration.x.web_domain}/)"
end
end
end