-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
57 lines (51 loc) · 1.33 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.1.2'
gem 'blacklight', '~> 7.38'
gem 'blacklight_oai_provider'
gem 'bootsnap', require: false
gem 'bootstrap', '~> 4.0'
gem 'cancancan'
gem 'devise'
gem 'devise-guests', '~> 0.8'
gem 'etda_utilities'
gem 'faker'
gem 'faraday'
gem 'font-awesome-rails', '~> 4.7'
gem 'importmap-rails'
gem 'jbuilder'
gem 'jquery-rails'
gem 'mysql2', '>= 0.5.6'
gem 'okcomputer'
gem 'puma', '~> 6'
gem 'rails', '~> 7.2.2'
gem 'redis', '~> 4.0'
gem 'rsolr', '>= 1.0', '< 3'
gem 'sassc-rails', '~> 2.1'
gem 'simplecov'
gem 'sprockets-rails'
gem 'stimulus-rails'
gem 'turbo-rails'
gem 'twitter-typeahead-rails', '0.11.1.pre.corejavascript'
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
group :development do
# Use console on exceptions pages [https://github.com/rails/web-console]
gem 'web-console'
end
group :test do
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
gem 'capybara'
gem 'rspec-its'
gem 'rspec-rails'
gem 'selenium-webdriver'
gem 'webdrivers'
gem 'webmock'
end
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'html_tokenizer', '~> 0.0.7'
gem 'niftany', '>= 0.10'
gem 'pry-byebug'
gem 'solr_wrapper', '>= 0.3'
end