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