-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
95 lines (65 loc) · 2.22 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
# frozen_string_literal: true
##########################
# Gemfile for homepicker #
##########################
source 'https://rubygems.org'
ruby '3.2.3'
# Remove whitespace before field validation
gem 'auto_strip_attributes'
# Debug: Improved error page display
gem 'better_errors', group: :development
# Security audit checks (eg. SQL injection)
gem 'brakeman', require: false, group: %i[development test]
# Improve applicaion boot speed
gem 'bootsnap', require: false
# Detect N+1 query issues
gem 'bullet', group: :development
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platform: :mri, group: %i[development test]
# Authentication
gem 'devise'
# Load '.env' file into ENV
gem 'dotenv', groups: %i[development test]
# Replace raw numeric IDs with short unique ids
gem 'hashid-rails'
# Support dialogues, link HTTP verb changes and form-submit improvements
gem 'jquery-rails'
gem 'listen'
# HTML Parsing (for crawler)
gem 'nokogiri', require: false
# Version history tracking
gem 'paper_trail'
# PostgreSQL Database
gem 'pg'
# Use Puma as the app server
gem 'puma'
# Ruby on Rails framework
gem 'rails'
# Markdown renderer
gem 'redcarpet'
# Background job library on top of Redis
gem 'resque'
# RSpec testing framework
gem 'rspec-rails', group: %i[development test]
# Ruby syntax/formatting checking (and associated Cop plugins)
gem 'rubocop', require: false, group: %i[development test]
gem 'rubocop-performance', group: %i[development test]
gem 'rubocop-rails', group: %i[development test]
gem 'rubocop-rspec', group: %i[development test]
gem 'rubocop-thread_safety', group: %i[development test]
# RuboCop for ERB view files
gem 'ruumba'
# Sentry.io error tracking
gem 'sentry-rails'
gem 'sentry-ruby'
# Send emails via SparkPost
# https://github.com/the-refinery/sparkpost_rails/pull/89
gem 'sparkpost_rails', github: 'sunny/sparkpost_rails', branch: 'allow-rails-seven'
# Asset serving (not included in Rails 7+)
gem 'sprockets-rails'
# Find misconfigured or unused routes
gem 'traceroute'
# Image upload and thumbnailing
gem 'transloadit', require: false
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console', group: :development