Relax dependency on rails in Gemfile

This commit is contained in:
Pirate Praveen 2020-03-17 15:55:16 +05:30
parent b7d16c0b32
commit 6bff19ce1f
2 changed files with 9 additions and 1 deletions

View file

@ -3,6 +3,14 @@ gitlab Gemfile
--- a/Gemfile
+++ b/Gemfile
@@ -1,6 +1,6 @@
source 'https://rubygems.org'
-gem 'rails', '5.2.3'
+gem 'rails', '~> 5.2.3'
gem 'bootsnap', '~> 1.4'
@@ -10,10 +10,10 @@
# Responders respond_to and respond_with
gem 'responders', '~> 3.0'

View file

@ -2,7 +2,7 @@
+++ b/Gemfile
@@ -2,7 +2,7 @@
gem 'rails', '5.2.3'
gem 'rails', '~> 5.2.3'
-gem 'bootsnap', '~> 1.4'
+gem 'bootsnap', '~> 1.3'