-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
51 lines (46 loc) · 1.31 KB
/
Gemfile
File metadata and controls
51 lines (46 loc) · 1.31 KB
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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '~> 3.3'
gem 'berkeley_library-alma', '~> 0.1.1'
gem 'berkeley_library-logging', '~> 0.3'
gem 'berkeley_library-util', '~> 0.3'
gem 'drb'
gem 'image_processing', '~> 1.12'
gem 'jsonapi.rb', '~> 2.0'
gem 'jsonapi-serializer', '~> 2.2'
gem 'jwt', '~> 2.4'
gem 'mutex_m'
gem 'omniauth', '~> 2.1'
gem 'omniauth-cas', '~> 3.0'
gem 'omniauth-rails_csrf_protection', '~> 1.0'
gem 'pg', '~> 1.4'
gem 'pg_search', '~> 2.3'
gem 'puma', '~> 7.2'
gem 'puma-plugin-delayed_stop', '~> 0.1.2'
gem 'rack-cors'
gem 'rails', '~> 8.0.5'
gem 'ransack', '~> 4.2'
gem 'zaru', '~> 0.3.0'
group :development, :test do
gem 'brakeman'
gem 'bundle-audit'
gem 'colorize'
end
group :development do
gem 'hashdiff', '~> 1.0.1'
gem 'rubocop', '~> 1.86'
gem 'rubocop-rails', '~> 2.34', require: false
gem 'rubocop-rspec', '~> 3.6', require: false
gem 'rubocop-rspec_rails', '~> 2.30', require: false
end
group :test do
gem 'database_cleaner-active_record', '~> 2.0'
gem 'factory_bot_rails'
gem 'rails-controller-testing'
gem 'rspec', '~> 3.13'
gem 'rspec_junit_formatter', '~> 0.6'
gem 'rspec-rails', '~> 8.0'
gem 'simplecov', '~> 0.22', require: false
gem 'simplecov-rcov', '~> 0.3', require: false
gem 'webmock', require: false
end