diff Gemfile @ 223:ad6264cca788

Update to rails 7
author nanaya <me@nanaya.pro>
date Sat, 15 Jan 2022 02:39:53 +0900
parents 1b2dbba1e119
children 657d99f51749
line wrap: on
line diff
--- a/Gemfile	Sat Aug 21 20:46:52 2021 +0900
+++ b/Gemfile	Sat Jan 15 02:39:53 2022 +0900
@@ -1,11 +1,17 @@
 source "https://rubygems.org"
 
-rails_ver = "~> 6.1.0"
+rails_ver = "~> 7.0.1"
+
 gem "actionview", rails_ver
 gem "railties", rails_ver
 gem "actionpack", rails_ver
 
-gem "redis-rails"
+# TODO: back to release version after they released version which support Rails 7
+# "redis-actionpack" and "redis-activesupport" are only here because otherwise "redis-rails"
+# will try to download outdated version of those.
+gem "redis-actionpack", github: "redis-store/redis-actionpack", branch: "master"
+gem "redis-activesupport", github: "redis-store/redis-activesupport", branch: "master"
+gem "redis-rails", github: "redis-store/redis-rails", branch: "master"
 gem "redis"
 gem "redis-store"
 
@@ -15,4 +21,3 @@
 gem "newrelic_rpm"
 
 gem "puma", :require => false
-gem "falcon", :require => false, :platforms => :ruby