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-05-06 05:50:00 -04:00
|
|
|
4
|
2017-04-27 09:22:19 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def patch
|
2018-05-06 05:50:00 -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-05-21 10:05:31 -04:00
|
|
|
'rc5'
|
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
|
|
|
|
|
|
|
def source_base_url
|
|
|
|
'https://github.com/tootsuite/mastodon'
|
|
|
|
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
|