From 8c9e8d95615f3a42eeb9dead93f76fbdc7a27dae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20Mugnolo?= Date: Thu, 12 Oct 2023 13:39:19 -0400 Subject: [PATCH] Add missing activesupport require The Rails team has been removing unnecessary requirements from the `activesupport` gem for a while now. This commit fixes the build by adding the missing extension to test the presence of any object. --- lib/inline_svg.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/inline_svg.rb b/lib/inline_svg.rb index f22d517..45aa49e 100644 --- a/lib/inline_svg.rb +++ b/lib/inline_svg.rb @@ -11,6 +11,7 @@ require "inline_svg/railtie" if defined?(Rails) require 'active_support' +require 'active_support/core_ext/object/blank' require 'active_support/core_ext/string' require 'nokogiri'