-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
95 lines (77 loc) · 2.25 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.7.2'
# Rails
# ================================================================
gem 'pg', '>= 0.18', '< 2.0'
gem 'puma', '~> 3.11'
gem 'rails', '~> 6.1', '>= 6.1.3'
gem 'webpacker', '~> 5.2', '>= 5.2.1'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.1.0', require: false
# Application Specific
# =================================================================
# background jobs
gem 'sidekiq', '~> 6.1', '>= 6.1.3'
gem 'sidekiq-failures'
# elasticsearch
gem 'elasticsearch-model', '~> 6.0'
gem 'elasticsearch-rails', '~> 6.0'
# authentication
gem 'devise', '~> 4.6', '>= 4.6.2'
gem 'omniauth', '~> 1.9'
gem 'omniauth-cas', '~> 1.1', '>= 1.1.1'
# Log all changes to models
gem 'audited', '~> 4.9'
# metadata / library of congress specific
gem 'edtf', '~> 3.0', '>= 3.0.4'
# gem 'edtf-humanize', '~> 0.0.7'
# breadcrumbs
gem 'loaf'
# configruation
gem 'figaro'
# convert user strings to regex
gem 'to_regexp', '~> 0.2.1'
# files
gem 'mini_magick', '~> 4.11' # wrapper for imagemagick
gem 'rtesseract'
gem 'rubyzip'
# used for batching jobs
gem 'sidekiq-batch'
# Development / Test Items (Primarily debugging)
# =====================================================================================
group :development, :test do
gem 'byebug', platforms: %i[mri mingw x64_mingw] # from rails new
gem 'factory_bot_rails'
gem 'faker'
gem 'pry'
gem 'pry-rails'
# Code critics
gem 'rubocop'
gem 'rubocop-performance'
gem 'rubocop-rails'
end
group :test do
# test suite
gem 'capybara', '>= 2.15', '< 4.0'
gem 'database_cleaner'
gem 'rspec-html-matchers'
gem 'rspec_junit_formatter'
gem 'rspec-rails'
gem 'shoulda'
gem 'shoulda-matchers'
# Codeclimate is not compatible with 0.18+. See https://github.com/codeclimate/test-reporter/issues/413
gem 'simplecov', require: false, group: :test
# gem 'simplecov', '~> 0.17.1'
# gem 'simplecov'
# gem 'simplecov-console'
end
group :development do
gem 'annotate'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console', '>= 3.3.0'
# performance helper
gem 'bullet' # helps to eliminate N+1 Queries
end