debian-mirror-gitlab/debian/patches/0640-relax-ruby-version.patch

14 lines
457 B
Diff
Raw Normal View History

2018-06-12 18:34:56 +05:30
Debian's ruby has the latest security patches applied
--- a/lib/system_check/app/ruby_version_check.rb
+++ b/lib/system_check/app/ruby_version_check.rb
2019-05-18 01:04:41 +05:30
@@ -7,7 +7,7 @@ module SystemCheck
2018-06-12 18:34:56 +05:30
set_check_pass -> { "yes (#{self.current_version})" }
def self.required_version
2019-05-18 01:04:41 +05:30
- @required_version ||= Gitlab::VersionInfo.new(2, 5, 3)
2018-06-12 18:34:56 +05:30
+ @required_version ||= Gitlab::VersionInfo.new(2, 3, 3)
end
def self.current_version