-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
73 lines (63 loc) · 2.31 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
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
gem 'addressable'
gem 'bootsnap', '>= 1.1.0', require: false # Reduces boot times through caching; required in config/boot.rb
gem 'cancancan' # authorization
gem 'config' # simple rails environment specific config
gem 'faraday' # HTTP client
gem 'honeybadger' # exception reporting
gem "importmap-rails" # Use JavaScript with ESM import maps
gem "jbuilder" # Build JSON APIs with ease
gem "jsonpath"
gem 'okcomputer' # application monitoring
gem "propshaft"
gem "puma", "~> 6.0" # web server for development
gem "rails", "~> 7.2.0"
gem 'recaptcha' # prevent robots spamming the feedback form
gem "sitemap_generator"
gem "stimulus-rails" # Hotwire's modest JavaScript framework
gem 'tophat'
gem "turbo-rails" # Hotwire's SPA-like page accelerator
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem "view_component"
gem 'whenever', require: false # cron jobs
# DLSS and its community
gem 'dor-rights-auth', '~> 1.6'
gem 'iiif-presentation', '~> 1.3'
gem 'mods_display', '~> 1.5'
group :production do
gem 'newrelic_rpm'
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console', '>= 3.3.0'
end
group :development, :test do
gem 'capybara' # for feature/integration tests
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", platforms: %i[ mri mingw x64_mingw ]
gem 'rspec-rails', '~> 7.1'
# Rubocop is a static code analyzer (linter) to enforce style.
gem 'rubocop', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
gem 'rubocop-rspec_rails', require: false
gem 'rubocop-capybara', require: false
gem 'rubocop-factory_bot', require: false
gem 'selenium-webdriver', '!= 3.13.0'
gem 'simplecov', require: false
gem 'webmock', '~> 3.19'
end
group :deployment do
gem 'capistrano', '~> 3.0'
gem 'capistrano-bundler'
gem 'capistrano-passenger'
gem 'capistrano-rails'
gem 'capistrano-shared_configs'
gem 'dlss-capistrano'
end