-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
70 lines (54 loc) · 1.44 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
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 7.2'
# Use Puma as the app server
gem 'puma'
# Use SCSS for stylesheets
gem 'sass-rails'
gem 'terser'
# Health monitor
gem 'health-monitor-rails', '12.4.0'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
gem 'pg'
gem "blacklight", '~> 8.3.0'
gem "view_component", "~> 2.66"
gem 'sshkit'
gem 'ffi'
gem 'whenever', require: false
group :development, :test do
gem 'byebug', platform: :mri
gem 'capybara'
gem "rspec-rails"
gem 'rails-controller-testing'
gem "factory_bot_rails", require: false
gem "pry-byebug"
gem "rubocop-rspec", require: false
gem 'rubocop-rails', require: false
gem 'selenium-webdriver'
gem "timecop"
gem 'webmock', require: false
end
group :development do
gem 'capistrano'
gem 'capistrano-passenger'
gem 'capistrano-rails'
gem 'capistrano-yarn'
gem 'bcrypt_pbkdf'
gem 'ed25519'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'rsolr'
gem "devise"
gem 'devise-guests'
gem 'omniauth-cas'
gem 'omniauth-rails_csrf_protection'
gem 'select2-rails'
gem 'ckeditor'
gem 'pul-assets', github: 'pulibrary/pul_assets', branch: :main
gem 'bootstrap', '~> 4.6'
gem "honeybadger"
gem "vite_rails"