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
|
2017-10-08 16:03:44 -04:00
|
|
|
2
|
2017-04-27 09:22:19 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def minor
|
2018-08-23 17:30:57 -04:00
|
|
|
5
|
2017-04-27 09:22:19 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def patch
|
2018-08-23 17:30:57 -04:00
|
|
|
0
|
2017-04-27 09:22:19 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def pre
|
2017-12-15 15:38:25 -05:00
|
|
|
nil
|
2017-04-27 09:22:19 -04:00
|
|
|
end
|
|
|
|
|
2017-07-24 10:21:08 -04:00
|
|
|
def flags
|
2018-08-23 17:30:57 -04:00
|
|
|
'rc1'
|
2017-07-24 10:21:08 -04:00
|
|
|
end
|
|
|
|
|
2017-04-27 09:22:19 -04:00
|
|
|
def to_a
|
|
|
|
[major, minor, patch, pre].compact
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_s
|
2017-07-24 10:21:08 -04:00
|
|
|
[to_a.join('.'), flags].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
|
2018-07-31 16:21:15 -04:00
|
|
|
'glitch-soc/mastodon'
|
2018-07-28 13:25:33 -04:00
|
|
|
end
|
|
|
|
|
2017-08-22 16:54:19 -04:00
|
|
|
def source_base_url
|
2018-07-28 13:25:33 -04:00
|
|
|
"https://github.com/#{repository}"
|
2017-08-22 16:54:19 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# specify git tag or commit hash here
|
|
|
|
def source_tag
|
|
|
|
nil
|
|
|
|
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
|