-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
53 lines (48 loc) · 1.58 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem 'action_policy'
gem 'amazing_print'
gem 'bcrypt', '~> 3.1.7' # Use Active Model has_secure_password
gem 'bootsnap', '>= 1.4.2', require: false # Reduces boot times through caching; required in config/boot.rb
gem 'cocina-models', '~> 0.99.0'
gem 'committee'
gem 'config', '~> 2.0'
gem 'dor-services-client', '~> 15.1'
gem 'dor-workflow-client', '~> 7.0'
gem 'druid-tools'
gem 'honeybadger'
gem 'jbuilder', '~> 2.7' # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jwt' # JSON web tokens (for authentication)
gem 'lograge'
gem 'marcel'
gem 'mutex_m' # This can be removed when H2 is upgraded to Rails 7.1
gem 'okcomputer'
gem 'pg' # Postgres database client
gem 'rails', '~> 7.2.0'
gem 'sidekiq', '~> 7.1' # background job processing
gem 'whenever', require: false # schedule crons
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'equivalent-xml'
gem 'factory_bot_rails'
gem 'rspec_junit_formatter'
gem 'rspec-rails'
gem 'rubocop'
gem 'rubocop-capybara'
gem 'rubocop-factory_bot'
gem 'rubocop-rails'
gem 'rubocop-rspec'
gem 'rubocop-rspec_rails'
gem 'simplecov', require: false
gem 'webmock'
end
group :development do
gem 'puma' # Use Puma as the app server
end
group :deployment do
gem 'capistrano-passenger', require: false
gem 'capistrano-rails', require: false
gem 'dlss-capistrano', require: false
end