-
Notifications
You must be signed in to change notification settings - Fork 6
/
Gemfile
69 lines (51 loc) · 1.5 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem 'rails', '~> 7.2.0'
gem 'propshaft'
# Use Puma as the app server
gem 'puma', '~> 6.0'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.1.0', require: false
gem 'faraday', '~> 2'
gem 'faraday-follow_redirects'
gem 'config'
gem 'dor-rights-auth'
gem 'nokogiri', '>= 1.7.1'
group :development, :test do
gem 'capybara'
gem 'debug', platforms: %i[mri]
gem 'druid-tools'
gem 'factory_bot_rails', '~> 6.4'
gem 'high_voltage'
gem 'rspec'
gem 'rspec-rails'
gem 'selenium-webdriver', '~> 4.2'
gem 'webmock', '~> 3.19'
# Linting/Styleguide Enforcement
gem 'rubocop', '~> 1.53'
gem 'rubocop-capybara', require: false
gem 'rubocop-factory_bot', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
gem 'rubocop-rspec_rails', require: false
end
group :deployment do
gem 'capistrano', '~> 3.0'
gem 'capistrano-bundler'
gem 'capistrano-passenger'
gem 'capistrano-rails'
gem 'capistrano-shared_configs'
gem 'dlss-capistrano'
end
# Use honeybadger for exception handling
gem 'honeybadger'
gem 'newrelic_rpm', group: :production
# Use okcomputer to monitor the application
gem 'okcomputer'
gem 'cssbundling-rails', '~> 1.1'
gem 'shakapacker', '~> 7.0'
gem 'view_component', '~> 3.10'
gem 'importmap-rails', '~> 2.0'
gem 'stimulus-rails', '~> 1.3'