-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
90 lines (80 loc) · 2.64 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
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 7.1'
# Successor to sprockets. https://github.com/rails/propshaft
gem "propshaft"
# Use Puma as the app server
gem 'puma', '~> 6'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.1.0', require: false
group :development, :test do
# Rubocop is a static code analyzer to enforce style.
gem 'rubocop', require: false
gem 'rubocop-capybara', require: false
gem 'rubocop-factory_bot', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
gem 'rubocop-rspec_rails', require: false
gem 'rubocop-performance', require: false
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console', '>= 4.1.0'
# Display performance information such as SQL time and flame graphs for each request in your browser.
# Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
gem 'rack-mini-profiler', '~> 2.0'
gem 'debug'
end
group :development, :test do
gem 'rspec-rails'
gem 'capybara'
gem 'selenium-webdriver', '!= 3.13.0'
gem 'factory_bot_rails'
gem 'database_cleaner'
gem 'dotenv'
gem 'simplecov', require: false
gem 'solr_wrapper'
gem 'sqlite3', '~> 1.7'
gem "axe-core-rspec"
end
group :deployment do
gem 'capistrano'
gem 'capistrano-bundler'
gem 'capistrano-rails'
gem 'dlss-capistrano'
gem 'capistrano-shared_configs'
gem 'capistrano-passenger'
gem "ed25519", "~> 1.3"
gem "bcrypt_pbkdf", "~> 1.1"
end
group :production do
gem 'pg'
end
gem 'blacklight', '~> 8.6'
gem 'rsolr' # required for Blacklight
gem 'geoblacklight', github: 'geoblacklight/geoblacklight', tag: 'v5.0.0-alpha.11'
gem 'faraday', '~> 2.0'
gem "devise"
gem "devise-guests", ">= 0.3.3"
gem 'devise-remote-user'
gem 'okcomputer'
gem 'honeybadger'
gem 'blacklight_dynamic_sitemap', '~> 0.3'
gem 'newrelic_rpm'
gem 'twitter-typeahead-rails'
gem 'redis', '~> 5.0'
# Not compatible with GeoBlacklight 4.x
# https://github.com/geoblacklight/geo_monitor/issues/12
# gem 'geo_monitor', '~> 0.7', github: 'geoblacklight/geo_monitor'
gem 'geo_combine', '>= 0.9' # For OpenGeoMetadata indexing
gem 'sidekiq', '~> 7.0'
gem 'whenever', require: false
gem 'rack-attack' # For throttle configuration
gem 'recaptcha', '>= 5.4.1'
gem 'http'
gem "cssbundling-rails", "~> 1.4"
gem "importmap-rails", "~> 2.0"
gem "stimulus-rails", "~> 1.3"
gem "turbo-rails", "~> 2.0"