Use a more reliable way to detect current Ruby version

This commit is contained in:
Gabriel Mazetto 2018-11-21 21:46:27 +01:00
parent 62e0877d5a
commit e94001ba89
2 changed files with 6 additions and 1 deletions

View File

@ -0,0 +1,5 @@
---
title: 'SystemCheck: Use a more reliable way to detect current Ruby version'
merge_request: 23291
author:
type: changed

View File

@ -11,7 +11,7 @@ module SystemCheck
end
def self.current_version
@current_version ||= Gitlab::VersionInfo.parse(Gitlab::TaskHelpers.run_command(%w(ruby --version)))
@current_version ||= Gitlab::VersionInfo.parse(RUBY_VERSION)
end
def check?