-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathGemfile
More file actions
26 lines (21 loc) · 744 Bytes
/
Gemfile
File metadata and controls
26 lines (21 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
source 'https://rubygems.org'
# Specify your gem's dependencies in ey-core.gemspec
gemspec
gem "rack", "<= 2.1.4"
# We build the cookiejar from sources because of the following reason.
# The rubygems.org repository contains the latest cookiejar of the version 0.3.3.
# It is the latest published version. But the gem sources have several unpublished fixes.
# One of them is about the support of the 'samesite' cookie which is used when we work with AWS ALB.
gem "cookiejar", git: 'https://github.com/dwaite/cookiejar', branch: 'master'
group :doc do
gem 'yard'
gem 'redcarpet'
end
group :test do
gem 'codeclimate-test-reporter', '~> 0.3'
gem 'faker'
gem 'rack-test'
gem 'rspec', '~> 3.1'
gem 'simplecov'
gem 'timecop'
end