This repository has been archived by the owner on Jun 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
58 lines (49 loc) · 1.71 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.0.1'
gem 'rails', '~> 6.1.4.1'
# Use postgres as the database for Active Record
gem 'pg', '~> 1.2.3'
# Use Puma as the app server
gem 'puma', '~> 5.5.2'
# Transpile app-like JavaScript
gem 'webpacker', '~> 5.4.3'
# Navigate your web application faster
gem 'turbolinks', '~> 5.2.1'
# Provide pagination
gem 'kaminari', '~> 1.2.1'
# Provide queueing for async jobs
gem 'delayed_job_active_record', '~> 4.1.6'
# Use Active Model has_secure_password
gem 'bcrypt', '~> 3.1.16'
# Role models are important
gem 'rubocop'
# Maddeningly, sprockets 4+ requires a manifest.js file, even if
# you're not _actually_ using it to compile your assets:
# https://github.com/rails/sprockets/issues/643
# https://github.com/rails/sprockets/issues/654
gem 'sprockets', '~>3.0'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.7.3', require: false
# Abort and log requests of >15 sec (recommended by Heroku)
gem 'rack-timeout'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri]
end
group :development do
gem 'listen', '3.7.0'
# 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', '~> 2.0.0'
end
group :test do
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '>= 3.35'
gem 'rails-controller-testing'
gem 'selenium-webdriver'
# Easy installation and use of web drivers to run system tests with browsers
gem 'webdrivers'
end