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
|
||||
|
||||
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',
|
||||
|
Loading…
Reference in New Issue
Block a user