forked from sul-dlss-deprecated/happy-heron
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
60 lines (54 loc) · 1.57 KB
/
Gemfile
File metadata and controls
60 lines (54 loc) · 1.57 KB
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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
group :development, :test do
gem 'byebug'
gem 'factory_bot_rails'
gem 'rspec'
gem 'rspec_junit_formatter' # used by CircleCI
gem 'rspec-rails'
gem 'rubocop', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
gem 'rubocop-sorbet', require: false
# CodeClimate is not compatible with 0.18+. See https://github.com/codeclimate/test-reporter/issues/413
gem 'simplecov', '~> 0.17.1', require: false
end
group :development do
gem 'listen', '~> 3.2'
gem 'puma', '~> 4.1'
gem 'sorbet'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console', '>= 3.3.0'
end
group :test do
gem 'apparition'
gem 'capybara', '>= 2.15'
end
group :deployment do
gem 'capistrano-passenger', require: false
gem 'capistrano-rails', require: false
gem 'capistrano-rvm', require: false
gem 'dlss-capistrano', '~> 3.6', require: false
end
gem 'action_policy', '~> 0.5.3'
gem 'bootsnap', '>= 1.4.2', require: false
gem 'config', '~> 2.2'
gem 'devise', '~> 4.7'
gem 'devise-remote-user', '~> 1.0'
gem 'dor-services-client'
gem 'honeybadger', '~> 4.0'
gem 'okcomputer'
gem 'pg'
gem 'rails', '~> 6.0.3', '>= 6.0.3.2'
gem 'redis', '~> 4.0'
gem 'sdr-client'
gem 'sidekiq', '~> 6.1'
gem 'sorbet-rails' # used both statically and at runtime
gem 'sorbet-runtime'
gem 'state_machines-activerecord'
gem 'turbolinks', '~> 5'
gem 'view_component', '~> 2.18'
gem 'webpacker', '~> 5.0'