2017-04-21 10:30:59 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Mastodon
|
2017-04-27 22:22:19 +09:00
|
|
|
module Version
|
|
|
|
module_function
|
|
|
|
|
|
|
|
def major
|
2019-09-22 03:02:14 +09:00
|
|
|
3
|
2017-04-27 22:22:19 +09:00
|
|
|
end
|
|
|
|
|
|
|
|
def minor
|
2020-01-24 09:14:51 +09:00
|
|
|
1
|
2017-04-27 22:22:19 +09:00
|
|
|
end
|
|
|
|
|
|
|
|
def patch
|
2020-02-10 10:55:40 +09:00
|
|
|
1
|
2017-04-27 22:22:19 +09:00
|
|
|
end
|
|
|
|
|
2019-07-26 14:57:27 +09:00
|
|
|
def flags
|
2020-02-09 08:02:08 +09:00
|
|
|
''
|
2017-04-27 22:22:19 +09:00
|
|
|
end
|
|
|
|
|
2019-07-26 14:57:27 +09:00
|
|
|
def suffix
|
2019-06-14 03:19:21 +09:00
|
|
|
''
|
2017-07-24 23:21:08 +09:00
|
|
|
end
|
|
|
|
|
2017-04-27 22:22:19 +09:00
|
|
|
def to_a
|
2019-07-26 14:57:27 +09:00
|
|
|
[major, minor, patch].compact
|
2017-04-27 22:22:19 +09:00
|
|
|
end
|
|
|
|
|
|
|
|
def to_s
|
2019-07-26 14:57:27 +09:00
|
|
|
[to_a.join('.'), flags, suffix].join
|
2017-04-27 22:22:19 +09:00
|
|
|
end
|
2017-08-23 05:54:19 +09:00
|
|
|
|
2018-07-29 02:25:33 +09:00
|
|
|
def repository
|
2019-04-21 11:41:34 +09:00
|
|
|
ENV.fetch('GITHUB_REPOSITORY') { 'tootsuite/mastodon' }
|
2018-07-29 02:25:33 +09:00
|
|
|
end
|
|
|
|
|
2017-08-23 05:54:19 +09:00
|
|
|
def source_base_url
|
2019-04-21 11:41:34 +09:00
|
|
|
ENV.fetch('SOURCE_BASE_URL') { "https://github.com/#{repository}" }
|
2017-08-23 05:54:19 +09:00
|
|
|
end
|
|
|
|
|
|
|
|
# specify git tag or commit hash here
|
|
|
|
def source_tag
|
2019-05-05 00:39:17 +09:00
|
|
|
ENV.fetch('SOURCE_TAG') { nil }
|
2017-08-23 05:54:19 +09:00
|
|
|
end
|
|
|
|
|
|
|
|
def source_url
|
|
|
|
if source_tag
|
|
|
|
"#{source_base_url}/tree/#{source_tag}"
|
|
|
|
else
|
|
|
|
source_base_url
|
|
|
|
end
|
|
|
|
end
|
2018-05-18 08:47:22 +09: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 22:22:19 +09:00
|
|
|
end
|
2017-04-21 10:30:59 +09:00
|
|
|
end
|