From 9b0767b80fcd2ad919ea09277eed921580ad1b1a Mon Sep 17 00:00:00 2001 From: Andy Allan Date: Wed, 16 Nov 2022 14:26:05 +0000 Subject: [PATCH] Relax strict version constraint on rails gem This lets us receive 7.0.x patch releases without having to edit the Gemfile. --- Gemfile | 2 +- Gemfile.lock | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index 020cc9166..81ba4a9a3 100644 --- a/Gemfile +++ b/Gemfile @@ -1,7 +1,7 @@ source "https://rubygems.org" # Require rails -gem "rails", "7.0.4" +gem "rails", "~> 7.0.0" # Require json for multi_json gem "json" diff --git a/Gemfile.lock b/Gemfile.lock index 68a973c47..586f2000d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -573,7 +573,7 @@ DEPENDENCIES r2 (~> 0.2.7) rack-cors rack-uri_sanitizer - rails (= 7.0.4) + rails (~> 7.0.0) rails-controller-testing rails-i18n (~> 7.0.0) rinku (>= 2.0.6) -- 2.43.2