-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
46 lines (37 loc) · 825 Bytes
/
Gemfile
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# frozen_string_literal: true
source 'https://rubygems.org'
ruby File.read('.ruby-version').strip
# Web
gem 'puma', '~>6.0'
gem 'rack-session', '~>2.0'
gem 'redis-rack', git: 'https://github.com/redis-store/redis-rack'
gem 'redis-store', git: 'https://github.com/PikachuEXE/redis-store', branch: 'fix/redis-client-compatibility'
gem 'roda', '~>3.54'
gem 'slim'
# Configuration
gem 'figaro', '~>1.2'
gem 'rake', '~>13.0'
# Communication
gem 'http', '~>5.1'
gem 'redis', '~>5.0'
# Security
gem 'dry-validation', '~>1.10'
gem 'rack-ssl-enforcer'
gem 'rbnacl', '~>7.1'
# Debugging
gem 'pry'
gem 'rack-test'
# Development
group :development do
gem 'rubocop'
gem 'rubocop-performance'
end
# Testing
group :test do
gem 'minitest'
gem 'minitest-rg'
gem 'webmock'
end
group :development, :test do
gem 'rerun'
end