-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
49 lines (42 loc) · 949 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
source "https://rubygems.org"
gem "rake"
# Web framework
gem "dry-system", ">= 0.7.1"
gem "dry-web", ">= 0.7.0"
gem "dry-web-roda", ">= 0.6.0"
gem "puma"
gem "rack_csrf"
gem "rack", ">= 2.0"
gem "shotgun", ">= 0.9.2"
# Database persistence
gem "pg"
gem "rom", ">= 3.1.0"
gem "rom-repository"
gem "rom-sql", ">= 1.1.0"
# Application dependencies
gem "dry-matcher"
gem "dry-monads"
gem "dry-struct"
gem "dry-transaction", ">= 0.10.0"
gem "dry-types"
gem "dry-validation"
gem "dry-view", git: 'https://github.com/dry-rb/dry-view', branch: 'add_default_option_to_expose'
gem "bcrypt"
gem "slim"
gem "shrine"
gem "image_processing"
gem "mini_magick", ">= 4.3.5"
group :development, :test do
gem "pry-byebug", platform: :mri
end
group :test do
gem "capybara"
gem "capybara-screenshot"
gem "database_cleaner"
gem "poltergeist"
gem "rspec"
gem "rom-factory"
gem 'simplecov'
gem "codeclimate-test-reporter"
gem "shrine-memory"
end