Skip to content

Commit 7a181d0

Browse files
authored
Merge pull request #135 from eudalov/bugfix/GHI-4789
GHI-4789 - Build the `cookiejar` gem from sources
2 parents 4e3a8d0 + 0ac3c1e commit 7a181d0

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

Gemfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ gemspec
55

66
gem "rack", "<= 2.1.4"
77

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+
814
group :doc do
915
gem 'yard'
1016
gem 'redcarpet'

lib/ey-core/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Ey
22
module Core
3-
VERSION = "3.6.4"
3+
VERSION = "3.6.5"
44
end
55
end

0 commit comments

Comments
 (0)