-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathGemfile
119 lines (96 loc) · 2.88 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
109
110
111
112
113
114
115
116
117
118
119
# frozen_string_literal: true
source 'https://rubygems.org' do
gem 'rails', '~> 6.0.3'
gem 'pg', '>= 0.18', '< 2.0'
gem 'puma', '~> 4.3'
# Load ENV from .env(.*) files
gem 'dotenv-rails'
# Locales for the 'not USA' bits of the world
gem 'rails-i18n'
# Reduce boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.4.2', require: false
# Use faster SCSS gem for stylesheets
gem 'sassc-rails'
# Transpile app-like JavaScript. More info: https://github.com/rails/webpacker
gem 'webpacker', '~> 5.1'
# Sessions, authentication, and authorisation
gem 'activerecord-session_store'
gem 'bcrypt', '~> 3.1.15'
gem 'devise'
gem 'devise-pwned_password'
gem 'pundit'
# Bot detection to protect forms (including registration, comments, etc)
gem 'recaptcha'
# Spam comment detection
gem 'akismet'
# Validate email addresses
gem 'email_address'
# Email preview
gem 'rails_email_preview'
# MJML emails
gem 'mjml-rails'
# Tags
gem 'acts-as-taggable-on'
# Likes
gem 'acts_as_votable'
# Pagination
gem 'kaminari'
# CKEditor: WYSIWYG editor for admin area
gem 'ckeditor'
# Email stats
gem 'ahoy_email'
# Web stats
gem 'ahoy_matey'
gem 'blazer'
gem 'groupdate'
# Image storage on S3, image processing (resizing)
gem 'aws-sdk-s3'
gem 'image_processing', '~> 1.11'
gem 'mini_magick'
# Better-looking console output
gem 'amazing_print'
# Pry is a debugging tool
# Uncomment it here if you want to use it on the Rails console in production
gem 'pry-rails'
group :development, :test do
# Debugging tool. Uncomment it here if you commented it out in production.
# gem 'pry-rails'
# Create test objects
gem 'factory_bot_rails'
# Fill test objects with fake data
gem 'faker'
# Utils for working with translation strings
# gem 'i18n-debug'
gem 'i18n-tasks', '~> 0.9.31'
# Tests are good, m'kay?
gem 'rspec-rails'
end
group :development do
# Scan for security vulnerabilities
gem 'brakeman', require: false
# Check gems for security issues
gem 'bundler-audit', require: false
# Check for slow code
gem 'fasterer', require: false
# Capture all emails sent by the system and view them in a dev webmail inbox
gem 'letter_opener_web', '~> 1.0'
# Reload dev server when files change
gem 'listen', '>= 3.0.5', '< 3.3'
# Helps you manage your git hooks
gem 'overcommit', require: false
# Linter
gem 'rubocop', require: false
gem 'rubocop-rails', require: false
# Used to generate demo site data
gem 'seed_dump'
end
group :test do
# Integration tests (request specs)
gem 'capybara', '>= 2.15'
# Wipe the test database before each test run
gem 'database_cleaner-active_record'
# Analyse and report on test coverage via CodeCov
gem 'codecov', require: false
gem 'rspec_junit_formatter'
end
end