aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile
diff options
context:
space:
mode:
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile12
1 files changed, 7 insertions, 5 deletions
diff --git a/Gemfile b/Gemfile
index 8c6d943e18..3f8cd57853 100644
--- a/Gemfile
+++ b/Gemfile
@@ -51,9 +51,6 @@ gem "dalli", ">= 2.2.1"
gem "listen", ">= 3.0.5", "< 3.2", require: false
gem "libxml-ruby", platforms: :ruby
-# Action View. For testing Erubis handler deprecation.
-gem "erubis", "~> 2.7.0", require: false
-
# for railties app_generator_test
gem "bootsnap", ">= 1.1.0", require: false
@@ -83,8 +80,7 @@ group :cable do
gem "hiredis", require: false
gem "redis", "~> 4.0", require: false
- # For Redis 4.0 support. Unreleased 9cb81bf.
- gem "redis-namespace", github: "resque/redis-namespace"
+ gem "redis-namespace"
gem "websocket-client-simple", github: "matthewd/websocket-client-simple", branch: "close-race", require: false
@@ -93,6 +89,7 @@ group :cable do
gem "sprockets-export", require: false
end
+# Active Storage
group :storage do
gem "aws-sdk-s3", require: false
gem "google-cloud-storage", "~> 1.3", require: false
@@ -101,6 +98,11 @@ group :storage do
gem "mini_magick"
end
+group :ujs do
+ gem "qunit-selenium"
+ gem "chromedriver-helper"
+end
+
# Add your own local bundler stuff.
local_gemfile = File.expand_path(".Gemfile", __dir__)
instance_eval File.read local_gemfile if File.exist? local_gemfile