1
0
puyopuyotetr.is/lib/mastodon/version.rb

61 lines
1016 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Mastodon
module Version
module_function
def major
2022-10-28 07:26:02 +09:00
4
end
def minor
2023-01-20 22:19:12 +09:00
1
end
def patch
2023-01-20 22:19:12 +09:00
0
end
2017-07-24 23:21:08 +09:00
def flags
2023-02-04 00:39:38 +09:00
'rc3'
2017-07-24 23:21:08 +09:00
end
def suffix
2022-12-28 00:16:35 +09:00
'+YRYRe'
end
def to_a
[major, minor, patch].compact
end
def to_s
[to_a.join('.'), flags, suffix].join
end
def repository
2022-12-23 11:27:07 +09:00
ENV.fetch('GITHUB_REPOSITORY', 'funamitech/mastodon')
end
def source_base_url
ENV.fetch('SOURCE_BASE_URL', "https://github.com/#{repository}")
end
# specify git tag or commit hash here
def source_tag
ENV.fetch('SOURCE_TAG', nil)
end
def source_url
if source_tag
"#{source_base_url}/tree/#{source_tag}"
else
source_base_url
end
end
def user_agent
@user_agent ||= "#{HTTP::Request::USER_AGENT} (Mastodon/#{Version}; +http#{Rails.configuration.x.use_https ? 's' : ''}://#{Rails.configuration.x.web_domain}/)"
end
end
end