From 0a7d63c3498a989eac5cf61feda3f6e6a7b3c829 Mon Sep 17 00:00:00 2001 From: benjamin wil Date: Mon, 21 Aug 2023 16:56:41 -0700 Subject: [PATCH] Make the extension compatible with Ruby 3 Ruby 2 has been end-of-lifed. There doesn't seem to be a specific reason for this Ruby version requirement, so let's relax it. --- solidus_recently_viewed.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solidus_recently_viewed.gemspec b/solidus_recently_viewed.gemspec index 2b48d1d..39a974f 100644 --- a/solidus_recently_viewed.gemspec +++ b/solidus_recently_viewed.gemspec @@ -10,7 +10,7 @@ Gem::Specification.new do |s| s.summary = 'Adds recently viewed products to Spree' s.description = s.summary - s.required_ruby_version = '~> 2.5' + s.required_ruby_version = '>= 2.5' s.authors = ['Roman Smirnov', 'Brian Quinn', 'Allison Reilly'] s.email = 'acreilly3@gmail.com'