Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMichael Kozono <mkozono@gmail.com>2019-04-18 21:23:55 +0300
committerMichael Kozono <mkozono@gmail.com>2019-04-18 21:23:55 +0300
commite9bf3672dff56cf845114856a17ea72328215bcf (patch)
treedc5b23def4fc81f979c52e9af0862b963bd57838 /lib
parent63e41ba61b3ae0fba19500d01bfe041109590d14 (diff)
parent0ca790aff77ceaf4de1a7f1df0af6780f2859b32 (diff)
Merge branch 'sh-bump-ruby-required-version-check' into 'master'
Bump required Ruby version check to 2.5.3 Closes #60704 See merge request gitlab-org/gitlab-ce!27495
Diffstat (limited to 'lib')
-rw-r--r--lib/system_check/app/ruby_version_check.rb2
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