-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
39 lines (28 loc) · 843 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
gem 'puma', '~> 4.3.12'
gem 'rake', '~> 13.0.1'
gem 'sinatra', '~> 2.2.0', require: 'sinatra/base'
gem 'sinatra-contrib', '~> 2.2.0'
gem 'faraday', '~> 1.0.1'
gem 'faraday_middleware', '~> 1.0.0'
gem 'bunny'
gem 'config', '~> 2.2.1'
gem 'i18n', '~> 1.8.2'
gem 'pg', '~> 1.2.3'
gem 'sequel', '~> 5.32.0'
gem 'dry-initializer', '~> 3.0.3'
gem 'dry-validation', '~> 1.5.0'
gem 'activesupport', '~> 6.0.0', require: false
gem 'fast_jsonapi', '~> 1.5'
group :test do
gem 'database_cleaner-sequel', '~> 1.8.0'
gem 'factory_bot', '~> 5.2.0'
gem 'rack-test', '~> 1.1.0'
gem 'rspec', '~> 3.9.0'
end
gem "rack-ougai", "~> 0.3.0"
gem "ougai", "~> 2.0"
gem "rack-request-id", "~> 0.0.4"
gem 'amazing_print'