-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathGemfile
55 lines (42 loc) · 942 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
47
48
49
50
51
52
53
54
55
source 'https://rubygems.org'
ruby '2.6.3'
gem 'puma'
gem 'rake'
gem 'hanami', '~> 1.3'
gem 'hanami-model', '~> 1.3'
# healthcheck
gem 'wet-health_endpoint'
gem 'pg'
gem 'slim'
gem 'hanami-bootstrap', '0.4'
gem 'sass'
gem 'hanami-pagination', git: 'https://github.com/jodosha/hanami-pagination.git', branch: 'fix/hanami-repository-superclass'
# api
gem 'hanami-serializer', github: 'davydovanton/hanami-serializer', ref: '321192cb8408992828f9b325ec8e499f2e2fb505'
gem 'graphql'
gem 'sidekiq'
gem 'sidekiq-scheduler'
gem 'dry-system'
gem 'redis', '~>3.2'
gem 'hiredis'
gem 'mock_redis'
gem 'connection_pool'
# group :plugins do
# gem 'hanami-reloader'
# end
#
group :development do
gem 'guard-puma'
gem 'hanami-webconsole'
end
group :test, :development do
gem 'dotenv', '~> 2.0'
end
group :test do
gem 'rspec'
gem 'rspec-hanami'
gem 'capybara'
gem 'vcr'
gem 'webmock'
gem 'simplecov', require: false
end