From 1d1c5c3a2c50ac0e47f15ccbd08f9ec46496a3b3 Mon Sep 17 00:00:00 2001 From: Marius Balteanu Date: Tue, 12 Nov 2024 08:33:12 +0000 Subject: [PATCH] Fixes "Unresolved or ambiguous specs during Gem::Specification.reset" (#41729). Patch by Go MAEDA (user:maeda). git-svn-id: https://svn.redmine.org/redmine/trunk@23256 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- lib/tasks/icons.rake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/tasks/icons.rake b/lib/tasks/icons.rake index d26f4405a..e50c450a1 100644 --- a/lib/tasks/icons.rake +++ b/lib/tasks/icons.rake @@ -16,8 +16,6 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. unless Rails.env.production? - require "svg_sprite" - ICON_RELEASE_VERSION = "v3.19.0" ICON_DEFAULT_STYLE = "outline" SOURCE = URI.parse("https://raw.githubusercontent.com/tabler/tabler-icons/#{ICON_RELEASE_VERSION}/icons") @@ -121,6 +119,8 @@ unless Rails.env.production? end def generate_svg_sprite(input_path, sprite_path) + require "svg_sprite" + SvgSprite.call( input: input_path, name: 'icon',