-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
125 lines (94 loc) · 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
source 'https://rubygems.org'
gem 'rails', '~> 7.1.3'
# Use sqlite3 as the database (during local development)
gem 'sqlite3', '~> 1.4'
# Use Puma as the app server
gem 'puma', '~> 6.0'
gem 'bootsnap'
# A gem for simple rails environment specific config
gem 'config'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
# CanCanCan is an authorization Gem for rails
gem 'cancancan'
# Use faraday for making HTTP requests
gem 'faraday', '~> 2' # for library hours, Illiad, and Folio clients
gem 'faraday-retry'
gem 'http' # for Reshare and SymphonyClient
# Use kaminari for pagination
gem 'kaminari'
gem 'bootstrap5-kaminari-views'
gem 'redcarpet'
# Use Honeybadger for exception reporting
gem 'honeybadger'
# Use okcomputer to monitor the application
gem 'okcomputer'
# lograge to reduce noise in logs
gem 'lograge'
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', group: :development
# Specify Nokogiri to address security concerns
gem 'nokogiri', '>= 1.7.1'
# rack is a webserver interface used by rails.
gem 'rack'
group :test do
gem 'simplecov', require: false
end
# See https://stackoverflow.com/questions/70500220/rails-7-ruby-3-1-loaderror-cannot-load-such-file-net-smtp
gem 'net-smtp', require: false
gem 'jwt'
gem 'redis', '~> 4.8'
gem 'sidekiq', '~> 7.1'
gem 'whenever', require: false # Work around https://github.com/javan/whenever/issues/831
group :development, :test do
# Call 'binding.break' anywhere in the code to stop execution and get a debugger console
gem 'debug'
# Axe for accessibility testing
gem 'axe-core-rspec'
# RSpec for testing
gem 'rspec-rails', '~> 6.0'
# Capybara for feature/integration tests
gem 'capybara'
# factory_bot_rails for creating fixtures in tests
gem 'factory_bot_rails', '~> 6.4'
# selenium-webdriver is used by Capybara for driving "browser" tests
gem 'selenium-webdriver'
# Rubocop is a static code analyzer to enforce style.
gem 'rubocop', require: false
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
gem 'rails-controller-testing'
# listen is used by bootsnap to listen to file changes
gem 'listen'
gem 'webmock'
gem 'warden-rspec-rails'
gem 'timecop'
end
group :production do
# Use mysql as the database when running on the server environment
gem 'mysql2'
end
# Use Capistrano for deployment
group :deployment do
gem 'capistrano', '~> 3.0'
gem 'capistrano-bundler'
gem 'capistrano-rails'
gem 'capistrano-passenger'
gem 'capistrano-shared_configs'
gem 'dlss-capistrano'
end
gem "cssbundling-rails", "~> 1.1"
gem "view_component", "~> 3.0"
gem "parslet"
gem "jsbundling-rails", "~> 1.1"
gem "turbo-rails", "~> 1.4"
gem 'stimulus-rails'
gem "propshaft", "~> 0.7.0"
gem 'recaptcha'
gem 'warden'
gem 'rack-attack'
gem "csv", "~> 3.3"