2017-04-21 11:30:59 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Mastodon
|
2017-04-27 23:22:19 +10:00
|
|
|
module Version
|
|
|
|
module_function
|
|
|
|
|
|
|
|
def major
|
2022-10-28 09:26:02 +11:00
|
|
|
4
|
2017-04-27 23:22:19 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
def minor
|
2023-08-09 00:12:12 +10:00
|
|
|
2
|
2017-04-27 23:22:19 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
def patch
|
2023-08-09 00:12:12 +10:00
|
|
|
0
|
2017-04-27 23:22:19 +10:00
|
|
|
end
|
|
|
|
|
2023-08-26 02:26:44 +10:00
|
|
|
def default_prerelease
|
2023-09-20 01:04:23 +10:00
|
|
|
'rc2'
|
2017-04-27 23:22:19 +10:00
|
|
|
end
|
|
|
|
|
2023-08-26 02:26:44 +10:00
|
|
|
def prerelease
|
|
|
|
ENV['MASTODON_VERSION_PRERELEASE'].presence || default_prerelease
|
|
|
|
end
|
|
|
|
|
|
|
|
def build_metadata
|
|
|
|
ENV.fetch('MASTODON_VERSION_METADATA', nil)
|
2017-07-25 00:21:08 +10:00
|
|
|
end
|
|
|
|
|
2017-04-27 23:22:19 +10:00
|
|
|
def to_a
|
2019-07-26 15:57:27 +10:00
|
|
|
[major, minor, patch].compact
|
2017-04-27 23:22:19 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
def to_s
|
2023-08-26 02:26:44 +10:00
|
|
|
components = [to_a.join('.')]
|
|
|
|
components << "-#{prerelease}" if prerelease.present?
|
|
|
|
components << "+#{build_metadata}" if build_metadata.present?
|
|
|
|
components.join
|
2017-04-27 23:22:19 +10:00
|
|
|
end
|
2017-08-23 06:54:19 +10:00
|
|
|
|
2023-09-02 01:47:07 +10:00
|
|
|
def gem_version
|
|
|
|
@gem_version ||= Gem::Version.new(to_s.split('+')[0])
|
|
|
|
end
|
|
|
|
|
2018-07-29 03:25:33 +10:00
|
|
|
def repository
|
2021-07-13 23:46:20 +10:00
|
|
|
ENV.fetch('GITHUB_REPOSITORY', 'mastodon/mastodon')
|
2018-07-29 03:25:33 +10:00
|
|
|
end
|
|
|
|
|
2017-08-23 06:54:19 +10:00
|
|
|
def source_base_url
|
2020-09-01 11:04:00 +10:00
|
|
|
ENV.fetch('SOURCE_BASE_URL', "https://github.com/#{repository}")
|
2017-08-23 06:54:19 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
# specify git tag or commit hash here
|
|
|
|
def source_tag
|
2020-09-01 11:04:00 +10:00
|
|
|
ENV.fetch('SOURCE_TAG', nil)
|
2017-08-23 06:54:19 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
def source_url
|
|
|
|
if source_tag
|
|
|
|
"#{source_base_url}/tree/#{source_tag}"
|
|
|
|
else
|
|
|
|
source_base_url
|
|
|
|
end
|
|
|
|
end
|
2018-05-18 09:47:22 +10:00
|
|
|
|
|
|
|
def user_agent
|
|
|
|
@user_agent ||= "#{HTTP::Request::USER_AGENT} (Mastodon/#{Version}; +http#{Rails.configuration.x.use_https ? 's' : ''}://#{Rails.configuration.x.web_domain}/)"
|
|
|
|
end
|
2017-04-27 23:22:19 +10:00
|
|
|
end
|
2017-04-21 11:30:59 +10:00
|
|
|
end
|