This repository has been archived by the owner on Jun 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
85 lines (69 loc) · 1.52 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
source 'https://rubygems.org'
ruby '2.7.2'
gem 'bootsnap', require: false
gem 'pg'
gem 'rails'
gem 'sass-rails'
gem 'turbolinks'
gem 'webpacker'
# Haml Templating
gem 'hamlit'
gem 'hamlit-rails'
gem 'html2haml'
# Automatic eager loading for Active Record
# https://www.salsify.com/blog/engineering/automatic-eager-loading-rails
gem 'goldiloader'
# Detect N+1 queries
gem 'bullet'
# User Authentication
gem 'clearance'
# Forms
gem 'simple_form'
# Tailwind CSS
gem 'tailwindcss'
# Image Uploads
gem 'carrierwave'
# URI Builder
gem 'iri'
# HTML Minifier
gem 'minify_html'
group :production do
# A High Performance HTTP Server for Ruby
gem 'agoo'
# Google Cloud Platform
gem 'appengine'
end
group :development, :test do
gem 'puma'
# Debug
gem 'active_record_query_trace'
gem 'apparition'
gem 'better_errors'
gem 'binding_of_caller'
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'byebug-dap'
# Does Not Work With Rails v6.1.0
# gem 'meta_request'
gem 'active_record_doctor'
gem 'capybara'
gem 'database_cleaner-active_record'
gem 'factory_bot_rails'
gem 'faker'
gem 'lol_dba'
gem 'rspec-rails'
gem 'selenium-webdriver'
gem 'shoulda-matchers'
gem 'webdrivers', require: false
end
group :development do
gem 'listen'
gem 'spring'
gem 'spring-watcher-listen'
gem 'web-console'
# Linters
gem 'rubocop', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rake', require: false
gem 'rubocop-rspec', require: false
end