From 5fa16f182176f09b68e2ef8b48d206dcf028ac23 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Thu, 21 May 2026 08:29:06 +0100 Subject: [PATCH] Require ruby-vips explicitly As of 2.x the image_processing no longer requires it automatically. --- Gemfile | 1 + Gemfile.lock | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/Gemfile b/Gemfile index 4c6736697..8ca36ebca 100644 --- a/Gemfile +++ b/Gemfile @@ -138,6 +138,7 @@ gem "aws-sdk-s3" # Used to resize user images gem "image_processing" +gem "ruby-vips" # Used to manage svg files gem "inline_svg" diff --git a/Gemfile.lock b/Gemfile.lock index c009e0408..c464ebfbe 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -834,6 +834,9 @@ GEM lint_roller (~> 1.1) rubocop (>= 1.72.1) ruby-progressbar (1.13.0) + ruby-vips (2.3.0) + ffi (~> 1.12) + logger rubyzip (3.3.0) sanitize (7.0.0) crass (~> 1.0.2) @@ -1020,6 +1023,7 @@ DEPENDENCIES rubocop-performance rubocop-rails rubocop-rake + ruby-vips sanitize sass-embedded (~> 1.64.0) selenium-webdriver -- 2.47.3