-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
48 lines (40 loc) · 1 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.3.0'
gem 'dotenv-rails'
gem 'decent_exposure'
gem 'devise'
gem 'haml-rails', '~> 2.0'
gem 'holidays'
gem 'kaminari'
gem 'pg', '>= 0.18'
gem 'premailer-rails'
gem 'puma', '~> 6.4'
gem 'pundit'
gem 'rails', '~> 6.1'
gem 'redis', '< 5' # ActionCable throws errors with Redis >= 5
gem 'sass-rails', '>= 6'
gem 'sidekiq'
gem 'turbolinks', '~> 5'
gem 'webpacker', '~> 5.0'
gem 'bootsnap', '>= 1.4.2', require: false
group :development, :test do
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'database_cleaner-active_record'
gem 'factory_bot_rails', '~> 6.0'
gem 'letter_opener'
gem 'letter_opener_web', '~> 2.0'
gem 'rspec-rails', '~> 6'
gem 'shoulda-matchers', '~> 5.0'
gem 'simplecov'
end
group :development do
gem 'bullet'
gem 'foreman'
gem 'web-console', '>= 3.3.0'
gem 'rubocop'
gem 'rubocop-performance'
gem 'rubocop-rails'
gem 'rubocop-rspec'
end