From 074c9c30be49ea5d17872b3b273b69f114f37035 Mon Sep 17 00:00:00 2001 From: Liane Hampe Date: Tue, 28 Jul 2026 20:03:06 +0200 Subject: [PATCH 1/2] Adds missing Ruby Gem 'pstore' for Ruby 4 compatibility Since Ruby 4 the Ruby Gem 'pstore' is no standard Gem anymore. It needs to be bundled instead. --- Gemfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Gemfile b/Gemfile index 19c81d1e..025a466e 100644 --- a/Gemfile +++ b/Gemfile @@ -26,6 +26,7 @@ source 'https://rubygems.org' do gem 'simple_enum' gem 'uuidtools' gem 'zip-zip' unless Dir.exist?(File.expand_path('../../vault', __FILE__)) + gem 'pstore' group :xapian do gem 'xapian-ruby' end From 8d982bec1f19bc0921aa7dc4e1ab82943a59bf57 Mon Sep 17 00:00:00 2001 From: Liane Hampe Date: Wed, 29 Jul 2026 07:15:22 +0200 Subject: [PATCH 2/2] Moves the Ruby Gem 'pstore' in alphabetical order --- Gemfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 025a466e..9726b9a2 100644 --- a/Gemfile +++ b/Gemfile @@ -22,11 +22,12 @@ source 'https://rubygems.org' do gem 'activestorage' gem 'image_processing', '~> 1.2' gem 'ox' # Dav4Rack + gem 'pstore' gem 'rake' unless Dir.exist?(File.expand_path('../../redmine_dashboard', __FILE__)) gem 'simple_enum' gem 'uuidtools' gem 'zip-zip' unless Dir.exist?(File.expand_path('../../vault', __FILE__)) - gem 'pstore' + group :xapian do gem 'xapian-ruby' end