-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
60 lines (47 loc) · 865 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
# frozen_string_literal: true
source 'https://rubygems.org'
ruby File.read('.ruby-version').strip
# Configuration and Utilities
gem 'figaro', '~> 1.2'
gem 'rake'
# Web Application
gem 'puma', '~> 6'
gem 'roda', '~> 3'
gem 'slim', '~> 4'
# Parse
gem 'activesupport'
gem 'rexml'
# Validation
gem 'dry-struct', '~> 1'
gem 'dry-types', '~> 1'
# Networking
gem 'http', '~> 5'
# Database
gem 'hirb', '~> 0'
gem 'hirb-unicode', '~> 0'
gem 'sequel', '~> 5.49'
group :development, :test do
gem 'sqlite3', '~> 1.4'
end
group :production do
gem 'pg'
end
# Testing
group :test do
gem 'minitest', '~> 5'
gem 'minitest-rg', '~> 5'
gem 'simplecov', '~> 0'
gem 'vcr', '~> 6'
gem 'webmock', '~> 3'
end
group :development do
gem 'rerun', '~> 0'
end
# Debugging
gem 'pry'
# Code Quality
group :development do
gem 'flog'
gem 'reek'
gem 'rubocop'
end