From a8ee31573047d583462b976db3066aa1602570b0 Mon Sep 17 00:00:00 2001 From: Joshua Sierles Date: Mon, 21 Oct 2019 19:00:54 +0200 Subject: [PATCH] allow using this gem with Rails 6 --- graphql-playground.gemspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/graphql-playground.gemspec b/graphql-playground.gemspec index 942ddff..8cef0bf 100644 --- a/graphql-playground.gemspec +++ b/graphql-playground.gemspec @@ -17,8 +17,8 @@ Gem::Specification.new do |spec| spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"] - spec.add_runtime_dependency "railties", "~> 5.0", ">= 5.0.0" + spec.add_runtime_dependency "railties", ">= 5.0.0" - spec.add_development_dependency "rails", "~> 5.0", ">= 5.0.0" + spec.add_development_dependency "rails", ">= 5.0.0" spec.add_development_dependency "sqlite3", "~> 1.3", ">= 1.3.11" end