From 2cb286a765f6d4faf9a59a4ed5020e066d614256 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Schray?= Date: Thu, 24 Sep 2020 14:45:01 +0200 Subject: [PATCH] Fix LoadError in CentOS 8 - 'require_relative' should not be necessary with recent version of rubygems --- lib/puma.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/puma.rb b/lib/puma.rb index ce143e9194..1e098bffc0 100644 --- a/lib/puma.rb +++ b/lib/puma.rb @@ -10,8 +10,8 @@ require 'thread' -require_relative 'puma/puma_http11' -require_relative 'puma/detect' +require 'puma/puma_http11' +require 'puma/detect' module Puma autoload :Const, 'puma/const'