-
Notifications
You must be signed in to change notification settings - Fork 7
/
Gemfile
108 lines (101 loc) · 2.45 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
96
97
98
99
100
101
102
103
104
105
106
107
108
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.1.2'
gem 'aasm'
gem 'after_commit_everywhere', '~> 0.1', '>= 0.1.5'
gem 'airrecord'
gem 'blacklight', '~> 7.38'
gem 'blacklight_oai_provider', github: 'projectblacklight/blacklight_oai_provider', ref: '7728dba'
gem 'bootsnap', '>= 1.4.2', require: false
gem 'browser'
gem 'bugsnag', '~> 6.26'
gem 'cocoon'
gem 'devise', '>4.8.0'
gem 'diffy'
gem 'edtf'
gem 'edtf-humanize'
gem 'faraday', '~> 1.0'
gem 'figaro'
gem 'flamegraph'
gem 'graphql', '~> 1.12'
gem 'image_processing'
gem 'jbuilder', '~> 2.7'
gem 'jquery-rails'
gem 'jsonb_accessor', '~> 1.3.5'
gem 'mail_form', '~> 1.8'
gem 'matrix'
gem 'memory_profiler'
gem 'net-imap'
gem 'net-pop'
gem 'net-smtp'
gem 'okcomputer', '~> 1.18.0'
gem 'omniauth', '~> 2.0'
gem 'omniauth-oauth2'
gem 'omniauth-rails_csrf_protection', '~> 1.0'
gem 'paper_trail', '>=15.1.0'
gem 'pg', '>= 0.18', '< 2.0'
gem 'psu_identity', '0.6.1'
gem 'psych', '< 4'
gem 'puma', '~> 5.6'
gem 'pundit'
gem 'qa', '>= 5.13'
gem 'rack-mini-profiler'
gem 'rails', '~> 7.2'
gem 'recaptcha'
gem 'redcarpet', '~> 3.5'
gem 'rexml'
gem 'rsolr', '>= 1.0', '< 3'
gem 'rubyzip', '~> 2.3.0'
gem 'seedbank'
gem 'shakapacker', '~> 7.1'
gem 'shrine', '~> 3.3'
gem 'sidekiq', '~> 6.5'
gem 'sprockets-rails'
gem 'stackprof'
gem 'uppy-s3_multipart', '~> 0.3'
gem 'view_component'
group :development, :test do
gem 'byebug', platform: :mri
gem 'database_cleaner', '~> 2.1.0'
gem 'factory_bot_rails'
gem 'faker'
gem 'html_tokenizer', '~> 0.0.8'
gem 'niftany', '~> 0.10'
gem 'pry-byebug'
gem 'pry-rails'
gem 'rubocop'
gem 'rubocop-performance'
gem 'rubocop-rails'
gem 'rubocop-rspec'
gem 'timecop'
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'flog'
gem 'listen', '~> 3.3'
gem 'spring', '>=4.0.0'
gem 'spring-commands-rspec'
gem 'spring-watcher-listen', '>= 2.1.0'
gem 'web-console', '>= 3.3.0'
end
# Lock simplecov at 0.17 until issue with test-reporter is solved
# https://github.com/codeclimate/test-reporter/issues/413
group :test do
gem 'capybara'
gem 'launchy'
gem 'rails-controller-testing'
gem 'rspec', '~> 3.13'
gem 'rspec-its'
gem 'rspec-rails', '~> 7.0.1'
gem 'selenium-webdriver'
gem 'shoulda-matchers', '~> 4.3'
gem 'simplecov', '~> 0.17.1', require: false
gem 'vcr'
gem 'webmock'
end
group :production do
gem 'lograge', '~> 0.11'
gem 'lograge-sql', '~> 2.4'
end