about summary refs log tree commit diff
path: root/Gemfile
diff options
context:
space:
mode:
authorDaigo 3 Dango <zunda@users.noreply.github.com>2020-01-27 00:06:34 -1000
committerEugen Rochko <eugen@zeonfederated.com>2020-01-27 11:06:34 +0100
commit7b8e0d3477a798297d44083e354ba244776080f9 (patch)
treee9c13356df75b5b219a646579170db4c6266f03e /Gemfile
parent663ea84b08162578cd06b54bfb998072b2bef8b9 (diff)
Explicitly install rack gem (#12972)
Pin rack version to 2.0.8. Rack-2.1.0 and 2.1.1 are known to record error below upon requests to `/sidekiq`:

```
NoMethodError - undefined method `transform_keys' for #<ActionDispatch::Request::Session:0x...>
```
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Gemfile b/Gemfile
index daab71588..e0a4fb0d7 100644
--- a/Gemfile
+++ b/Gemfile
@@ -9,6 +9,7 @@ gem 'puma', '~> 4.3'
 gem 'rails', '~> 5.2.4'
 gem 'sprockets', '~> 3.7.2'
 gem 'thor', '~> 0.20'
+gem 'rack', '2.0.8'
 
 gem 'thwait', '~> 0.1.0'
 gem 'e2mmap', '~> 0.1.0'