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
|
2017-10-08 20:03:44 +00:00
|
|
|
2
|
2017-04-27 13:22:19 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def minor
|
2019-03-30 01:13:42 +00:00
|
|
|
8
|
2017-04-27 13:22:19 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def patch
|
2019-05-03 22:31:06 +00:00
|
|
|
1
|
2017-04-27 13:22:19 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def pre
|
2017-12-15 20:38:25 +00:00
|
|
|
nil
|
2017-04-27 13:22:19 +00:00
|
|
|
end
|
|
|
|
|
2017-07-24 14:21:08 +00:00
|
|
|
def flags
|
2019-04-10 21:32:08 +00:00
|
|
|
''
|
2017-07-24 14:21:08 +00:00
|
|
|
end
|
|
|
|
|
2017-04-27 13:22:19 +00:00
|
|
|
def to_a
|
|
|
|
[major, minor, patch, pre].compact
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_s
|
2017-07-24 14:21:08 +00:00
|
|
|
[to_a.join('.'), flags].join
|
2017-04-27 13:22:19 +00:00
|
|
|
end
|
2017-08-22 20:54:19 +00:00
|
|
|
|
2018-07-28 17:25:33 +00:00
|
|
|
def repository
|
2019-04-21 02:41:34 +00:00
|
|
|
ENV.fetch('GITHUB_REPOSITORY') { 'tootsuite/mastodon' }
|
2018-07-28 17:25:33 +00:00
|
|
|
end
|
|
|
|
|
2017-08-22 20:54:19 +00:00
|
|
|
def source_base_url
|
2019-04-21 02:41:34 +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
|
2019-05-04 15:39:17 +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
|