From a3163d76439a8a7dbb9f098d99e8841552133b27 Mon Sep 17 00:00:00 2001 From: Akira Matsuda Date: Mon, 6 Nov 2023 23:55:18 +0900 Subject: [PATCH] loofah 2.21+ requires ruby >= 2.5.0 --- Gemfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Gemfile b/Gemfile index 1b4d42c..5de1023 100644 --- a/Gemfile +++ b/Gemfile @@ -16,3 +16,4 @@ end gem 'selenium-webdriver' gem 'nokogiri', RUBY_VERSION < '2.1' ? '~> 1.6.0' : '>= 1.7' +gem 'loofah', RUBY_VERSION < '2.5' ? '< 2.21.0' : '>= 0'