From 512fcd3a7f0de9d347217e373b7b05edfc536f55 Mon Sep 17 00:00:00 2001 From: Graeme Porteous Date: Thu, 16 Jan 2025 08:28:02 +0000 Subject: [PATCH] Bump rexml from 3.2.4 to 3.4.0 Specify REXML gem in Gemfile for all environments REXML, although bundled with Ruby core in Ruby 3+, is not a standard gem and needs to be explicitly required. While it's available in development through dev dependencies, adding it directly to the Gemfile ensures availability across all environments including production. --- Gemfile.lock | 3 ++- icasework.gemspec | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index df17362..41aacaa 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -7,6 +7,7 @@ PATH nokogiri (~> 1.0) pdf-reader (~> 2.4.0) rest-client (~> 2.1.0) + rexml (~> 3.4.0) GEM remote: https://rubygems.org/ @@ -69,7 +70,7 @@ GEM http-cookie (>= 1.0.2, < 2.0) mime-types (>= 1.16, < 4.0) netrc (~> 0.8) - rexml (3.2.4) + rexml (3.4.0) rspec (3.10.0) rspec-core (~> 3.10.0) rspec-expectations (~> 3.10.0) diff --git a/icasework.gemspec b/icasework.gemspec index 5042d78..0010e2f 100644 --- a/icasework.gemspec +++ b/icasework.gemspec @@ -37,4 +37,5 @@ Gem::Specification.new do |spec| spec.add_dependency 'nokogiri', '~> 1.0' spec.add_dependency 'pdf-reader', '~> 2.4.0' spec.add_dependency 'rest-client', '~> 2.1.0' + spec.add_dependency 'rexml', '~> 3.4.0' end