Mercurial > rsstweet
annotate 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 |
rev | line source |
---|---|
19 | 1 source "https://rubygems.org" |
0 | 2 |
223 | 3 rails_ver = "~> 7.0.1" |
4 | |
34 | 5 gem "actionview", rails_ver |
6 gem "railties", rails_ver | |
7 gem "actionpack", rails_ver | |
8 | |
223 | 9 # TODO: back to release version after they released version which support Rails 7 |
10 # "redis-actionpack" and "redis-activesupport" are only here because otherwise "redis-rails" | |
11 # will try to download outdated version of those. | |
12 gem "redis-actionpack", github: "redis-store/redis-actionpack", branch: "master" | |
13 gem "redis-activesupport", github: "redis-store/redis-activesupport", branch: "master" | |
14 gem "redis-rails", github: "redis-store/redis-rails", branch: "master" | |
150
950849c40d42
Update all the things, including rails 5.2
nanaya <me@nanaya.pro>
parents:
147
diff
changeset
|
15 gem "redis" |
950849c40d42
Update all the things, including rails 5.2
nanaya <me@nanaya.pro>
parents:
147
diff
changeset
|
16 gem "redis-store" |
0 | 17 |
10 | 18 gem "twitter" |
19 gem "twitter-text" | |
59 | 20 |
60 | 21 gem "newrelic_rpm" |
83 | 22 |
23 gem "puma", :require => false |