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
|
2017-10-09 07:03:44 +11:00
|
|
|
2
|
2017-04-27 23:22:19 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
def minor
|
2019-06-09 23:53:08 +10:00
|
|
|
9
|
2017-04-27 23:22:19 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
def patch
|
2019-06-09 23:53:08 +10:00
|
|
|
0
|
2017-04-27 23:22:19 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
def pre
|
2017-12-16 07:38:25 +11:00
|
|
|
nil
|
2017-04-27 23:22:19 +10:00
|
|
|
end
|
|
|
|
|
2017-07-25 00:21:08 +10:00
|
|
|
def flags
|
2019-06-13 08:43:59 +10:00
|
|
|
'rc2'
|
2017-07-25 00:21:08 +10:00
|
|
|
end
|
|
|
|
|
2017-04-27 23:22:19 +10:00
|
|
|
def to_a
|
|
|
|
[major, minor, patch, pre].compact
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_s
|
2017-07-25 00:21:08 +10:00
|
|
|
[to_a.join('.'), flags].join
|
2017-04-27 23:22:19 +10:00
|
|
|
end
|
2017-08-23 06:54:19 +10:00
|
|
|
|
2018-07-29 03:25:33 +10:00
|
|
|
def repository
|
2019-04-21 12:41:34 +10:00
|
|
|
ENV.fetch('GITHUB_REPOSITORY') { 'tootsuite/mastodon' }
|
2018-07-29 03:25:33 +10:00
|
|
|
end
|
|
|
|
|
2017-08-23 06:54:19 +10:00
|
|
|
def source_base_url
|
2019-04-21 12:41:34 +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
|
2019-05-05 01:39:17 +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
|