-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
82 lines (67 loc) · 2.3 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
"https://github.com/#{repo_name}.git"
end
gem 'haml-rails'
gem 'jbuilder' # TODO: remove the couple of templates using it
gem 'mini_racer'
gem 'pg'
gem 'rails', '< 7' # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'react-rails', '~> 2.4'
gem 'sassc-rails'
gem 'uglifier' # Use Uglifier as compressor for JavaScript assets
gem 'unicorn'
gem 'unicorn-worker-killer'
gem 'webpacker', '< 7'
gem 'rails-html-sanitizer', '>= 1.4.3', '< 1.5.0'
gem 'sprockets'
gem 'devise', '~> 4.7.1' # Authentication
gem 'draper'
gem 'lograge' # Lograge for more compact log files
gem 'simple_form' # Form helper
gem 'dry_crud'
gem 'friendly_id'
gem 'gibbon', '>= 3.4.4' # MailChimp API
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
gem 'scout_apm'
gem 'cookies_eu', '~> 1.6' # cookies policy
gem 'sidekiq', '>=6', '< 7' # Async queue
group :development, :test do
gem 'bullet'
gem 'byebug', platform: :mri
gem 'rails-controller-testing'
gem 'rspec-rails', '~> 5'
gem 'ruby-prof'
end
group :test do
gem 'database_cleaner'
gem 'factory_bot'
gem 'ffaker'
gem 'shoulda-matchers'
gem 'simplecov', '<1', require: false
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'listen'
gem 'web-console'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen'
end
group :lint do
gem 'brakeman', require: false # A static analysis security vulnerability scanner
gem 'bundler-audit' # Check dependencies
gem 'haml-lint', require: false # Syntax checker for HAML
gem 'overcommit', require: false # hook event pre-commit, pre-push
gem 'rubocop', require: false # A Ruby static code analyzer
gem 'rubocop-performance', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
gem 'ruby_css_lint', require: false # Syntax checker for CSS
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
# gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
ruby '2.7.0'