2017-04-21 02:30:59 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Mastodon
|
2017-04-27 14:22:19 +01:00
|
|
|
module Version
|
|
|
|
module_function
|
|
|
|
|
|
|
|
def major
|
2017-10-08 21:03:44 +01:00
|
|
|
2
|
2017-04-27 14:22:19 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def minor
|
2018-05-06 10:50:00 +01:00
|
|
|
4
|
2017-04-27 14:22:19 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def patch
|
2018-07-05 20:08:03 +01:00
|
|
|
3
|
2017-04-27 14:22:19 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def pre
|
2017-12-15 20:38:25 +00:00
|
|
|
nil
|
2017-04-27 14:22:19 +01:00
|
|
|
end
|
|
|
|
|
2017-07-24 15:21:08 +01:00
|
|
|
def flags
|
2018-07-11 10:21:27 +01:00
|
|
|
''
|
2017-07-24 15:21:08 +01:00
|
|
|
end
|
|
|
|
|
2017-04-27 14:22:19 +01:00
|
|
|
def to_a
|
|
|
|
[major, minor, patch, pre].compact
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_s
|
2017-07-24 15:21:08 +01:00
|
|
|
[to_a.join('.'), flags].join
|
2017-04-27 14:22:19 +01:00
|
|
|
end
|
2017-08-22 21:54:19 +01: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-18 00:47:22 +01: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 14:22:19 +01:00
|
|
|
end
|
2017-04-21 02:30:59 +01:00
|
|
|
end
|