forked from bemurphy/berg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
59 lines (50 loc) · 1.57 KB
/
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
source "https://rubygems.org"
ruby "2.3.0"
gem "rake"
# Web framework
gem "puma"
gem "dry-component", git: "https://github.com/timriley/dry-component", branch: "import-containers-for-import-module" # temporary
gem "dry-web", git: "https://github.com/dry-rb/dry-web", branch: "master"
gem "rack_csrf"
gem "shotgun"
# Database persistence
gem "pg"
gem "rom", git: "https://github.com/rom-rb/rom"
gem "rom-mapper", git: "https://github.com/rom-rb/rom-mapper"
gem "rom-repository", git: "https://github.com/rom-rb/rom-repository"
gem "rom-sql", git: "https://github.com/rom-rb/rom-sql"
gem "rom-support", git: "https://github.com/rom-rb/rom-support"
# Background jobs
gem "que"
# Application dependencies
gem "babosa"
gem "bcrypt"
gem "dry-equalizer"
gem "dry-result_matcher"
gem "dry-transaction"
gem "dry-types", git: "https://github.com/dryrb/dry-types", branch: "master"
gem "dry-logic", git: "https://github.com/dryrb/dry-logic", branch: "master"
gem "dry-validation", git: "https://github.com/dryrb/dry-validation", branch: "master"
gem "formalist", git: "https://github.com/icelab/formalist", branch: "master"
gem "i18n"
gem "slim"
gem "transproc", git: "https://github.com/solnic/transproc"
# 3rd party services
gem "bugsnag"
gem "postmark"
group :development, :test do
gem "faker"
gem "guard-rspec", require: false
gem "pry-byebug"
gem "foreman"
end
group :test do
gem "capybara", require: false
gem "capybara-screenshot", require: false
gem "codeclimate-test-reporter", require: nil
gem "database_cleaner"
gem "inflecto"
gem "poltergeist"
gem "rspec"
gem "site_prism"
end