-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
69 lines (54 loc) · 1.5 KB
/
Gemfile
File metadata and controls
69 lines (54 loc) · 1.5 KB
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
61
62
63
64
65
66
67
68
69
source 'https://rubygems.org'
ruby '2.7.1'
gem 'bootsnap', '>= 1.4.2', require: false
gem 'rails', '~> 6.0.3'
# WebServer
gem 'puma', '~> 4.3'
gem 'rack', '~> 2.2.3'
gem 'rack-cors', '~> 1.1.1'
# Database
gem 'pg', '~> 1.2.3'
# Environment variables
gem 'dotenv-rails', '~> 2.7.6'
# Async worker
gem 'sidekiq', '~> 6.1.0'
# Nullify blank strings before saving to db
gem 'nilify_blanks', '~> 1.4'
# Backoffice
gem 'activeadmin', '~> 2.7.0'
gem 'activeadmin_addons', '~> 1.7.1'
gem 'active_admin_theme', '~> 1.1'
gem 'ransack', '~> 2.3.2'
# Authentication
gem 'devise', '~> 4.7.2'
gem 'devise_token_auth', '~> 1.1.4'
# Serializing json views
gem 'jb', '~> 0.7.1'
# Pagination
gem 'pagy', '~> 3.8'
# Monitoring errors
gem 'sentry-raven', '~> 3.0.0'
group :development, :test do
gem 'bullet', '~> 6.1.0'
gem 'byebug', '>= 11.0.1', platforms: %i[mri mingw x64_mingw]
gem 'factory_bot_rails', '~> 6.1.0'
gem 'faker', '~> 2.13.0'
gem 'rspec-rails', '~> 4.0.1'
end
group :development do
gem 'annotate', '~> 3.1.1'
gem 'letter_opener', '~> 1.7.0'
gem 'listen', '>= 3.0.5', '< 3.3'
gem 'reek', '~> 6.0.1', require: false
gem 'rubocop', '~> 0.87.1', require: false
gem 'rubocop-rails', '~> 2.6.0', require: false
gem 'spring', '~> 2.1.0'
gem 'spring-watcher-listen', '~> 2.0.0'
end
group :test do
gem 'rspec-json_expectations', '~> 2.2.0'
gem 'shoulda-matchers', '~> 4.3.0'
gem 'simplecov', '~> 0.18.5'
gem 'webmock', '~> 3.8.3'
end
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]