2017-04-21 01:30:59 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Mastodon
|
2017-04-27 13:22:19 +00:00
|
|
|
module Version
|
|
|
|
module_function
|
|
|
|
|
|
|
|
def major
|
2022-10-27 22:26:02 +00:00
|
|
|
4
|
2017-04-27 13:22:19 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def minor
|
2023-09-28 11:40:43 +00:00
|
|
|
3
|
2017-04-27 13:22:19 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def patch
|
2023-08-08 14:12:12 +00:00
|
|
|
0
|
2017-04-27 13:22:19 +00:00
|
|
|
end
|
|
|
|
|
2023-08-25 16:26:44 +00:00
|
|
|
def default_prerelease
|
2024-02-16 11:06:47 +00:00
|
|
|
'alpha.3'
|
2017-04-27 13:22:19 +00:00
|
|
|
end
|
|
|
|
|
2023-08-25 16:26:44 +00:00
|
|
|
def prerelease
|
|
|
|
ENV['MASTODON_VERSION_PRERELEASE'].presence || default_prerelease
|
|
|
|
end
|
|
|
|
|
|
|
|
def build_metadata
|
|
|
|
ENV.fetch('MASTODON_VERSION_METADATA', nil)
|
2017-07-24 14:21:08 +00:00
|
|
|
end
|
|
|
|
|
2017-04-27 13:22:19 +00:00
|
|
|
def to_a
|
2019-07-26 05:57:27 +00:00
|
|
|
[major, minor, patch].compact
|
2017-04-27 13:22:19 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def to_s
|
2023-08-25 16:26:44 +00:00
|
|
|
components = [to_a.join('.')]
|
|
|
|
components << "-#{prerelease}" if prerelease.present?
|
|
|
|
components << "+#{build_metadata}" if build_metadata.present?
|
|
|
|
components.join
|
2017-04-27 13:22:19 +00:00
|
|
|
end
|
2017-08-22 20:54:19 +00:00
|
|
|
|
2023-09-01 15:47:07 +00:00
|
|
|
def gem_version
|
|
|
|
@gem_version ||= Gem::Version.new(to_s.split('+')[0])
|
|
|
|
end
|
|
|
|
|
2018-07-28 17:25:33 +00:00
|
|
|
def repository
|
2021-07-13 13:46:20 +00:00
|
|
|
ENV.fetch('GITHUB_REPOSITORY', 'mastodon/mastodon')
|
2018-07-28 17:25:33 +00:00
|
|
|
end
|
|
|
|
|
2017-08-22 20:54:19 +00:00
|
|
|
def source_base_url
|
2020-09-01 01:04:00 +00:00
|
|
|
ENV.fetch('SOURCE_BASE_URL', "https://github.com/#{repository}")
|
2017-08-22 20:54:19 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# specify git tag or commit hash here
|
|
|
|
def source_tag
|
2020-09-01 01:04:00 +00:00
|
|
|
ENV.fetch('SOURCE_TAG', nil)
|
2017-08-22 20:54:19 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def source_url
|
|
|
|
if source_tag
|
|
|
|
"#{source_base_url}/tree/#{source_tag}"
|
|
|
|
else
|
|
|
|
source_base_url
|
|
|
|
end
|
|
|
|
end
|
2018-05-17 23:47:22 +00: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 13:22:19 +00:00
|
|
|
end
|
2017-04-21 01:30:59 +00:00
|
|
|
end
|