-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
66 lines (61 loc) · 1.74 KB
/
Gemfile
File metadata and controls
66 lines (61 loc) · 1.74 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '~> 3.3'
gem 'addressable', '~> 2.8'
gem 'awesome_print', '~> 1.9'
gem 'berkeley_library-alma', '~> 0.1.1'
gem 'berkeley_library-docker', '~> 0.2.0'
gem 'berkeley_library-logging', '~> 0.3.0'
gem 'berkeley_library-marc', '~> 0.3.2'
gem 'berkeley_library-util', '~> 0.3.0'
gem 'cssbundling-rails'
gem 'csv'
gem 'dotiw', '~> 5.3.3'
gem 'iiif-presentation', '~> 1.4'
gem 'jbuilder', '~> 2.14.0'
gem 'jsbundling-rails'
gem 'jwt', '~> 2.2'
gem 'mutex_m', '~> 0.3.0'
gem 'observer', '~> 0.1.2'
gem 'okcomputer', '~> 1.19'
gem 'omniauth', '~> 2.1'
gem 'omniauth-cas', '~> 3.0'
gem 'omniauth-rails_csrf_protection', '~> 1.0'
gem 'pagy', '~> 43'
gem 'pg', '~> 1.2'
gem 'pg_search', '~> 2.3'
gem 'puma', '~> 7.2'
gem 'puma-plugin-delayed_stop', '~> 0.1.2'
gem 'rails', '~> 8.0.4'
gem 'ruby-vips', '~> 2.3'
gem 'sprockets-rails', '~> 3.5.0'
group :development, :test do
gem 'brakeman'
gem 'bundle-audit'
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'colorize'
gem 'factory_bot_rails'
gem 'rspec-rails', '~> 8.0'
gem 'rubocop-rspec_rails', '~> 2.31.0'
gem 'ruby-prof', '~> 2.0.0'
end
group :development do
gem 'dotenv', '~> 2.7', require: false
gem 'foreman'
gem 'listen'
gem 'rubocop', '~> 1.84.0'
gem 'rubocop-rails', '~> 2.34.0'
gem 'rubocop-rspec', '~> 3.9.0'
gem 'web-console', '>= 4.2.1'
end
group :test do
gem 'capybara', '~> 3.36'
gem 'concurrent-ruby', '~> 1.1'
gem 'database_cleaner-active_record', '~> 2.2'
gem 'rspec', '~> 3.10'
gem 'rspec_junit_formatter', '~> 0.5'
gem 'selenium-webdriver', '~> 4.0'
gem 'simplecov', '~> 0.21', require: false
gem 'simplecov-rcov', '~> 0.2', require: false
gem 'webmock', require: false
end