forked from bigbinary/wheel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
108 lines (75 loc) · 2.17 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# frozen_string_literal: true
source "https://rubygems.org"
ruby "3.0.2"
gem "rails", "~> 6.1.4.1"
gem "sprockets"
# friends of Rails
gem "sass-rails", ">= 6"
gem "sprockets-rails"
gem "uglifier", ">= 2.7.1"
gem "webpacker"
# React
gem "react-rails"
# database
gem "pg", group: [:production]
gem "sqlite3", "~> 1.4", group: [:development, :test]
# Application server
gem "puma"
# JSON builder
gem "jbuilder", ">= 2.7"
# Authentication
gem "devise", "~> 4.7"
# Error tracking
gem "honeybadger"
# Support cross-browser css compatibility
gem "autoprefixer-rails"
# Admin framework
gem "activeadmin"
# Email validation
gem "email_validator"
# Adds prefix to subject in emails
gem "email_prefixer"
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", ">= 1.7.4", require: false
# Background jobs
gem "sidekiq"
group :development, :test do
# Rails integration for factory-bot
gem "factory_bot_rails"
# A runtime developer console and IRB alternative with powerful introspection capabilities
gem "pry"
# For auto-generating demo data
gem "faker", "~> 2.19"
end
group :development, :staging, :heroku do
# Intercepts outgoing emails in non-production environment
gem "mail_interceptor"
end
group :development do
# speeds up development by keeping your application running in the background
gem "spring"
gem "spring-watcher-listen", "~> 2.0.0"
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code
gem "web-console"
# Reenable after https://github.com/rails/rails/issues/26158 is fixed
gem "listen", "~> 3.2"
# reports N+1 queries
gem "bullet"
# A Ruby static code analyzer, based on the community Ruby style guide
gem "rubocop", require: false
gem "rubocop-rails", require: false
# Patch-level verification for Bundler
gem "bundler-audit", require: false
# vulnerability checker for Ruby itself
gem "ruby_audit", require: false
# Preview email in browser
gem "letter_opener"
end
group :test do
# Complete suite of testing facilities
gem "minitest"
# for test coverage report
gem "simplecov", require: false
# Minitest reporter plugin for CircleCI.
gem "minitest-ci"
end