mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-01-25 17:12:58 -05:00
Add mention of YJIT in admin dashboard if enabled (#27283)
This commit is contained in:
parent
d22515861e
commit
3c13d70600
@ -25,7 +25,8 @@ class Admin::Metrics::Dimension::SoftwareVersionsDimension < Admin::Metrics::Dim
|
|||||||
end
|
end
|
||||||
|
|
||||||
def ruby_version
|
def ruby_version
|
||||||
value = "#{RUBY_VERSION}p#{RUBY_PATCHLEVEL}"
|
yjit = defined?(RubyVM::YJIT) && RubyVM::YJIT.enabled?
|
||||||
|
value = "#{RUBY_VERSION}p#{RUBY_PATCHLEVEL}#{yjit ? ' +YJIT' : ''}"
|
||||||
|
|
||||||
{
|
{
|
||||||
key: 'ruby',
|
key: 'ruby',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user