diff options
author | Stan Hu <stanhu@gmail.com> | 2019-04-18 10:13:27 -0700 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2019-04-18 10:15:53 -0700 |
commit | 0ca790aff77ceaf4de1a7f1df0af6780f2859b32 (patch) | |
tree | 6154975a0dd0e4eb138d80f80faf16c40e54ba32 /lib/system_check | |
parent | ce02daea08c4cc7bc5e65e56f9b3d744a2e1faa6 (diff) | |
download | gitlab-ce-0ca790aff77ceaf4de1a7f1df0af6780f2859b32.tar.gz |
Bump required Ruby version check to 2.5.3
Relates to https://gitlab.com/gitlab-org/gitlab-ce/issues/58079
Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/60704
Diffstat (limited to 'lib/system_check')
-rw-r--r-- | lib/system_check/app/ruby_version_check.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system_check/app/ruby_version_check.rb b/lib/system_check/app/ruby_version_check.rb index 60e07718338..53da62df176 100644 --- a/lib/system_check/app/ruby_version_check.rb +++ b/lib/system_check/app/ruby_version_check.rb @@ -7,7 +7,7 @@ module SystemCheck set_check_pass -> { "yes (#{self.current_version})" } def self.required_version - @required_version ||= Gitlab::VersionInfo.new(2, 3, 5) + @required_version ||= Gitlab::VersionInfo.new(2, 5, 3) end def self.current_version |