We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e3a8d0 commit a5298e7Copy full SHA for a5298e7
Gemfile
@@ -5,6 +5,12 @@ gemspec
5
6
gem "rack", "<= 2.1.4"
7
8
+# We build the cookiejar from sources because of the following reason.
9
+# The rubygems.org repository contains the latest cookiejar of the version 0.3.3.
10
+# It is the latest published version. But the gem sources have several unpublished fixes.
11
+# One of them is about the support of the 'samesite' cookie which is used when we work with AWS ALB.
12
+gem "cookiejar", git: 'https://github.com/dwaite/cookiejar', branch: 'master'
13
+
14
group :doc do
15
gem 'yard'
16
gem 'redcarpet'
0 commit comments