-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
43 lines (36 loc) · 903 Bytes
/
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
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'config'
gem 'pry' # useful for production environment
gem 'rake'
# Stanford DLSS gems
gem 'dor-workflow-client'
gem 'honeybadger' # for error reporting / tracking / notifications
gem 'lyber-core', '~> 7.1'
gem 'moab-versioning', '~> 6.0' # work with Moab Objects
gem 'preservation-client', '~> 7.0'
gem 'retries'
gem 'sidekiq', '~> 7.0'
gem 'slop'
gem 'zeitwerk', '~> 2.1'
source 'https://gems.contribsys.com/' do
gem 'sidekiq-pro'
end
group :development, :test do
gem 'pry-byebug'
gem 'rspec_junit_formatter' # For circleCI
gem 'rubocop'
gem 'rubocop-capybara'
gem 'rubocop-factory_bot'
gem 'rubocop-rspec'
gem 'rubocop-rspec_rails'
gem 'simplecov', require: 'false'
end
group :test do
gem 'rspec'
gem 'webmock'
end
group :deployment do
gem 'capistrano-bundler'
gem 'dlss-capistrano', require: false
end