-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
29 lines (24 loc) · 673 Bytes
/
Gemfile
File metadata and controls
29 lines (24 loc) · 673 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
27
28
29
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '2.6.4'
gem 'grape', '~> 1.3'
gem 'grape-entity', '~> 0.8.0'
gem 'grape_logging', '~> 1.8', '>= 1.8.3'
gem 'pg', '~> 1.2', '>= 1.2.2'
gem 'puma', '~> 4.3'
gem 'rack-cors', '~> 1.1', '>= 1.1.1'
gem 'rake', '~> 13.0', '>= 13.0.1'
gem 'require_smasher', '~> 0.4.1'
gem 'sequel', '~> 5.29'
group :test do
gem 'factory_bot', '~> 5.1', '>= 5.1.1'
gem 'rack-test', '~> 1.1'
gem 'rspec', '~> 3.9'
gem 'simplecov', '~> 0.18.2'
end
group :test, :development do
gem 'byebug', '~> 11.1', '>= 11.1.1'
gem 'database_cleaner', '~> 1.8', '>= 1.8.3'
gem 'racksh', '~> 1.0'
gem 'rubocop', '~> 0.80.0'
end