view 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 source

source "https://rubygems.org"

rails_ver = "~> 7.0.1"

gem "actionview", rails_ver
gem "railties", rails_ver
gem "actionpack", rails_ver

# 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"

gem "twitter"
gem "twitter-text"

gem "newrelic_rpm"

gem "puma", :require => false