-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
75 lines (61 loc) · 1.89 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
# frozen_string_literal: true
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 7.2.1'
# Use sqlite3 as the database for Active Record
gem 'sqlite3', '>= 2.0'
# Use Puma as the app server
gem 'puma', '~> 6.0'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.7'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.1.0', require: false
group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console', '>= 4.1'
# Display performance information such as SQL time and flame graphs for each request in your browser.
# Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
gem 'rack-mini-profiler', '~> 2.0'
gem 'axe-core-rspec'
end
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", platforms: %i[ mri mswin mswin64 mingw x64_mingw ], require: "debug/prelude"
gem 'capybara', '>= 3.26'
gem 'factory_bot_rails'
gem 'rails-controller-testing'
gem 'rspec-rails'
gem 'selenium-webdriver'
gem 'rubocop'
gem 'rubocop-performance'
gem 'rubocop-rails'
gem 'rubocop-rspec'
gem 'simplecov', require: false
end
group :deployment do
gem 'capistrano'
gem 'capistrano-passenger'
gem 'capistrano-rails'
gem 'dlss-capistrano'
end
group :production do
gem 'mysql2'
end
gem 'cancancan'
gem 'config'
gem 'dotenv'
gem 'faraday'
gem 'friendly_id'
gem 'gretel'
gem 'honeybadger'
gem 'nokogiri', '>= 1.7.1'
gem 'okcomputer'
gem 'global_alerts'
gem 'tophat'
gem 'recaptcha'
gem 'rack-attack'
gem "cssbundling-rails", "~> 1.1"
gem "importmap-rails", "~> 2.0"
gem 'propshaft'
gem "stimulus-rails", "~> 1.2"
gem "turbo-rails", "~> 2.0"