-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
83 lines (77 loc) · 2.16 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 7.2.2'
gem 'archivesspace-client'
gem 'aws-sdk-s3'
gem 'bcrypt_pbkdf', '~> 1.1'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.1.0', require: false
gem 'cancancan'
# Should this be in the development block with the other capistrano dependencies?
gem 'capistrano-yarn', '~> 2.0'
gem 'devise', '>= 4.6.0'
gem 'ed25519', '~> 1.3'
gem 'faraday', '~> 2.7'
gem "flipflop", git: "https://github.com/voormedia/flipflop.git", ref: "0d70d8e33483a9c0282ed8d6bca9c5ccd61e61e8"
gem 'foreman'
gem "health-monitor-rails", "12.4.0"
gem 'honeybadger'
gem 'icalendar'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
gem 'jwt'
gem 'library_stdnums'
gem 'marc'
gem 'marc_cleanup', github: "pulibrary/marc_cleanup", tag: 'v0.9.3', require: false
# Use ActiveStorage variant
gem 'matrix'
gem 'multipart-post'
gem 'net-ldap'
gem 'net-sftp'
gem 'nokogiri', '~> 1.16'
gem 'omniauth'
gem 'omniauth-cas'
gem 'omniauth-rails_csrf_protection'
gem 'open3'
gem 'pg'
# Use Puma as the app server
gem 'puma'
gem 'rubyzip'
# Use SCSS for stylesheets
gem 'sass-rails'
gem 'terser'
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
gem 'vite_rails', '~> 3.0'
gem 'whenever'
group :development, :test do
gem 'bixby'
gem 'brakeman'
gem 'dotenv-rails'
gem 'factory_bot_rails'
gem 'pry-byebug'
gem 'rspec'
gem 'rubocop', '~> 1.22'
gem 'rubocop-rails'
gem 'solargraph'
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'capistrano'
gem 'capistrano-passenger'
gem 'capistrano-rails'
gem 'database_cleaner-active_record'
gem 'rspec-rails'
gem 'web-console', '>= 3.3.0'
end
group :test do
gem 'axe-core-api'
gem 'axe-core-rspec'
gem 'capybara', '>= 2.15'
gem 'selenium-webdriver'
gem 'simplecov', require: false
gem 'timecop'
gem 'webmock'
end