-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
45 lines (39 loc) · 1.35 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
# frozen_string_literal: true
source 'https://rubygems.org'
# stanford dlss gems
gem 'assembly-image', '~> 2.0' # was-seed-preassembly thumbnail creation; 2.0.0 uses libvips
gem 'dor-services-client'
gem 'dor-workflow-client', '~> 7.0'
gem 'lyber-core', '~> 7.1'
gem 'config'
gem 'honeybadger'
gem 'lockfile' # file locks needed for mutual exclusion during wayback index rollup and addition processes
gem 'mini_exiftool' # was-seed-preassembly thumbnail - used to check mimetype and to get height and width
gem 'pry' # for bin/console
gem 'rake'
gem 'rubyzip' # warc_extractor_service
gem 'ruby-vips' # was-seed-preassembly thumbnail creation image processing with libvips
gem 'sidekiq', '~> 7.0'
gem 'slop' # for bin/run_robot
gem 'whenever', require: false # Work around https://github.com/javan/whenever/issues/831
gem 'zeitwerk', '~> 2.1'
source 'https://gems.contribsys.com/' do
gem 'sidekiq-pro'
end
group :development, :test do
gem 'awesome_print'
gem 'debug'
gem 'rspec'
gem 'rubocop'
gem 'rubocop-capybara'
gem 'rubocop-factory_bot'
gem 'rubocop-rspec'
gem 'rubocop-rspec_rails'
gem 'simplecov'
gem 'stub_server'
end
group :deployment do
gem 'capistrano-bundler'
gem 'capistrano-yarn' # for generating was-seed-preassembly thumbnail with chrome (PR #242)
gem 'dlss-capistrano', require: false
end