From c4248bcfe2f3f4346d14b37a93156a047af78d86 Mon Sep 17 00:00:00 2001 From: mishina Date: Wed, 8 Jun 2022 22:38:00 +0900 Subject: [PATCH] Remove arel and add rack-session to Gemfile - Arel is now bundled in the Active Record gem, and maintained in the rails/rails repository. - rack-session is removed from runtime dependency. --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index bdaaa3e9..642fc335 100644 --- a/Gemfile +++ b/Gemfile @@ -7,8 +7,8 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" } gemspec gem "rails", github: "rails/rails" -gem "arel", github: "rails/arel" gem "rack", github: "rack/rack" +gem "rack-session", github: "rack/rack-session" group :development do platform :ruby do