From 0ef3f8a2fb17c0909ce3570f74127b0d76932f2d Mon Sep 17 00:00:00 2001 From: Daniel Colson Date: Fri, 22 May 2020 17:15:37 -0400 Subject: [PATCH] Bump listen to ~> 3.2 This matches a change made in a recent version of Rails 6.0. Without this commit, CI fails because the wrong version of the gem gets installed. --- Appraisals | 2 +- gemfiles/rails6.0.gemfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Appraisals b/Appraisals index d8375ce..488a77f 100644 --- a/Appraisals +++ b/Appraisals @@ -31,7 +31,7 @@ end appraise "rails6.0" do gem "byebug" - gem "listen", ">= 3.0.5", "< 3.2" + gem "listen", "~> 3.2" gem "puma", "~> 4.1" gem "rails", "~> 6.0.2", ">= 6.0.2.2" gem "spring" diff --git a/gemfiles/rails6.0.gemfile b/gemfiles/rails6.0.gemfile index 3f17a28..65d263f 100644 --- a/gemfiles/rails6.0.gemfile +++ b/gemfiles/rails6.0.gemfile @@ -9,7 +9,7 @@ gem "rake" gem "rspec-rails" gem "rubocop", "0.54", require: false gem "byebug" -gem "listen", ">= 3.0.5", "< 3.2" +gem "listen", "~> 3.2" gem "puma", "~> 4.1" gem "rails", "~> 6.0.2", ">= 6.0.2.2" gem "spring"