We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4e3a8d0 + 0ac3c1e commit 7a181d0Copy full SHA for 7a181d0
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'
lib/ey-core/version.rb
@@ -1,5 +1,5 @@
1
module Ey
2
module Core
3
- VERSION = "3.6.4"
+ VERSION = "3.6.5"
4
end
0 commit comments