-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
52 lines (46 loc) · 1.56 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem 'bootsnap', '>= 1.4.2', require: false # # Reduces boot times through caching; required in config/boot.rb
gem 'committee' # validates Open API spec (OAS)
gem 'config'
gem 'honeybadger'
gem 'importmap-rails'
gem 'jbuilder' # Build JSON APIs with ease.
gem 'jwt'
gem 'okcomputer'
gem 'pg'
gem 'propshaft'
gem 'puma' # app server
gem 'rails', '~> 7.2.0'
gem 'redis', '~> 4.8' # for OKComputer check
gem 'sidekiq', '~> 7.0'
gem 'turbo-rails'
# DLSS specific
gem 'dor-workflow-client', '~> 7.0'
gem 'moab-versioning', '~> 6.0'
group :development, :test do
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'erb_lint', require: false
gem 'rexml' # required by erb_lint, can be removed when fixed, see https://github.com/Shopify/erb_lint/issues/371
gem 'rspec_junit_formatter'
gem 'rspec-rails'
gem 'rubocop', require: false
gem 'rubocop-capybara', require: false
gem 'rubocop-factory_bot', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
gem 'rubocop-rspec_rails', require: false
gem 'simplecov', '~> 0.21'
end
group :development do
gem 'listen', '~> 3.7'
gem 'spring' # speeds up rails development by keeping your application running in the background.
gem 'spring-watcher-listen', '~> 2.0.0'
end
group :deployment do
gem 'capistrano-passenger', require: false
gem 'capistrano-rails', require: false
gem 'dlss-capistrano', require: false
end