forked from soumyaray/codepraise-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
63 lines (48 loc) · 889 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
56
57
58
59
60
61
62
63
# frozen_string_literal: false
source 'https://rubygems.org'
ruby '2.4.2'
# Networking gems
gem 'http'
# Asynchronicity gems
gem 'concurrent-ruby'
# Parallel worker
gem 'aws-sdk-sqs', '~> 1'
gem 'faye', '~> 1'
gem 'shoryuken', '~> 3'
# Web app related
gem 'econfig'
gem 'pry' # to run console in production
gem 'puma'
gem 'rack-test' # to diagnose routes in production
gem 'rake' # to run migrations in production
gem 'roda'
# Database related
gem 'hirb'
gem 'sequel'
# Data gems
gem 'dry-struct'
gem 'dry-types'
# Representers
gem 'multi_json'
gem 'roar'
# Services
gem 'dry-monads'
gem 'dry-transaction'
group :test do
gem 'minitest'
gem 'minitest-rg'
gem 'simplecov'
gem 'vcr'
gem 'webmock'
end
group :development, :test do
gem 'sqlite3'
gem 'database_cleaner'
gem 'rerun'
gem 'flog'
gem 'reek'
gem 'rubocop'
end
group :production do
gem 'pg'
end