-
Notifications
You must be signed in to change notification settings - Fork 6
/
Gemfile
82 lines (69 loc) · 2.24 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '~> 2.5'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.0'
# Use postgresql as the database for Active Record
platforms :jruby do
gem 'activerecord-jdbc-adapter', '~> 60.2'
gem 'activerecord-jdbcpostgresql-adapter'
gem 'jruby-openssl', '0.11.0.cr1' # Uses a pre-release so that indexing doesn't fail
end
group :production, :development, :test do
# Use Puma as the app server
gem 'puma'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.1.0'
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks', '~> 5'
gem 'blacklight-locale_picker'
gem 'bootstrap', '4.1.3'
gem 'devise-guests'
gem 'ebsco-eds'
gem 'evergreen_holdings'
gem 'exception_notification'
gem 'jquery-rails'
gem 'material_icons'
gem 'rails-i18n'
gem 'twitter-typeahead-rails', '0.11.1.pre.corejavascript'
gem 'view_component', require: 'view_component/engine'
gem 'warbler', '>=1.4.0'
end
group :development do
gem 'brakeman'
gem 'rack-mini-profiler'
end
group :development, :test do
gem 'rspec'
gem 'rspec-rails'
gem 'rspec-solr'
gem 'rubocop', require: false
gem 'rubocop-performance'
gem 'rubocop-rails'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
gem 'blacklight', '~>7.19'
gem 'dotenv-rails'
gem 'rsolr', '>= 1.0', '< 3'
gem 'solr_wrapper'
gem 'sparql-client'
gem 'traject'
# 4.1.x is currently the latest version of http that we can use,
# since later versions depend on http-client, which is incompatible
# with warbler, see https://github.com/jruby/warbler/issues/482
gem 'blacklight-citeproc', '>=0.0.4'
gem 'blacklight_range_limit'
gem 'call_number_ranges'
gem 'devise'
gem 'field_test'
gem 'http', '~>4.1.1'
gem 'library_stdnums'
gem 'openlibrary-covers'
gem 'rack-cors'
group :indexer do
gem 'activerecord-nulldb-adapter'
end
gem 'dalli'
gem 'i18n', '1.8.7' # Pinned to this version while waiting for a fix to this issue: https://github.com/ruby-i18n/i18n/issues/555 / https://github.com/jruby/jruby/issues/6547