-
Notifications
You must be signed in to change notification settings - Fork 7
/
Gemfile
126 lines (120 loc) · 3.17 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
126
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'rails', '~> 7.1.0'
gem 'alma'
gem 'babel-transpiler'
gem 'bcrypt_pbkdf'
# Blacklight
gem 'blacklight', '~> 8.6.1'
gem 'blacklight_dynamic_sitemap'
gem 'blacklight-hierarchy'
gem 'blacklight-marc', '~>8.1'
# slider limit support
gem 'blacklight_range_limit', '~> 8.2'
gem 'bootstrap', '~> 4.6'
# Capistrano
# In the Capistrano documentation, it has these limited to the development group, and `require: false``
gem 'capistrano', '~> 3.4'
gem 'capistrano-passenger'
# support for non-marc citations (e.g. SCSB records)
gem 'citeproc-ruby'
gem 'csl-styles'
# Authentication and authorization
gem 'devise'
gem 'devise-guests'
gem 'ed25519'
gem 'email_validator'
gem 'faraday'
gem 'faraday-cookie_jar'
gem 'flipflop'
gem 'friendly_id', '~> 5.4.2'
gem 'global'
gem 'health-monitor-rails', '~> 12.2'
# Static pages
gem 'high_voltage'
gem 'honeybadger'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# Use jquery as the JavaScript library
# jest tests use yarn to get jquery; if upgrading here keep that version in sync
gem 'jquery-datatables' # used by requests (please do not remove)
gem 'jquery-rails'
gem 'lcsort', '>= 0.9.1'
gem 'library_stdnums'
gem 'lograge'
gem 'logstash-event'
gem 'matrix'
# For memory profiling
# See https://github.com/MiniProfiler/rack-mini-profiler#memory-profiling for usage
gem 'memory_profiler'
gem 'net-imap', require: false
gem 'net-ldap'
gem 'net-pop', require: false
gem 'net-smtp', require: false
# Authenticate using CAS
gem 'omniauth-cas'
gem 'omniauth-rails_csrf_protection'
gem 'openurl', '~> 1.0'
# Use postgresql as the database for Active Record
gem 'pg'
gem 'puma', '~> 6.4'
# For limiting request rates
gem 'rack-attack'
# For profiling
gem 'rack-mini-profiler'
gem 'rake'
# Needed for rack-mini-profiler storage
gem 'redis'
# Interact with Solr
gem 'rsolr'
# Should this be in the test, development group?
gem 'rspec-rails'
gem 'rubyzip', '>= 1.2.2'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 6.0'
gem 'simple_form'
gem 'sneakers'
gem 'sprockets-es6'
gem 'sprockets-rails'
# For call-stack profiling flamegraphs
gem 'stackprof'
gem 'stringex', git: 'https://github.com/pulibrary/stringex.git', tag: 'vpton.2.5.2.2'
gem 'string_rtl'
gem 'terser'
gem 'view_component', '< 3.0.0'
gem 'vite_rails'
gem 'voight_kampff', require: 'voight_kampff/rails'
gem 'whenever'
gem 'yajl-ruby', '>= 1.3.1', require: 'yajl'
gem 'yard'
group :development do
gem 'capistrano-rails'
gem 'reek'
end
group :test do
gem 'axe-core-api'
gem 'axe-core-rspec'
gem 'factory_bot_rails', require: false
gem 'faker'
gem 'rails-controller-testing'
gem 'rspec_junit_formatter'
gem 'selenium-webdriver'
gem 'timecop'
gem 'vcr'
gem 'webmock', require: false
end
group :development, :test do
gem 'rubocop-rspec', require: false
gem 'rubocop-rspec_rails', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-performance', require: false
gem 'capybara'
gem 'coveralls_reborn', require: false
gem "erb_lint", require: false
gem "erblint-github"
gem 'pry-byebug'
gem 'solargraph'
end
group :production do
gem 'datadog', require: 'datadog/auto_instrument'
end