-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
107 lines (101 loc) · 3 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
source 'https://rubygems.org'
ruby '2.7.4'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
"https://github.com/#{repo_name}.git"
end
gem 'bcrypt', '>= 3.1.12'
gem 'bcrypt_pbkdf'
gem "bootstrap-sass", ">= 3.4.1"
gem 'clamby', '>= 1.2.5'
gem 'ed25519'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails'
gem 'devise'
gem 'devise-guests', '~> 0.5'
gem 'dotenv-rails'
gem 'factory_bot_rails' # Needed so we can load fixtures for demos in production
gem 'ffaker' # Needed so we can load fixtures for demos in production
gem 'honeybadger'
gem 'hydra-role-management'
gem 'hyrax', '~> 2.9'
gem 'parallel'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# mail pinned to specific version to address "SMTP INJECTION VIA TO/FROM ADDRESSES" vulnerability
# See https://gemnasium.com/gems/mail
gem 'loofah', '~> 2.19'
gem 'mail', '2.6.6.rc1'
gem 'net-sftp'
gem 'nokogiri', '>= 1.10.4'
gem 'okcomputer'
gem 'omniauth', '< 2.0.0'
# gem 'omniauth-rails_csrf_protection'
gem 'omniauth-shibboleth', '~> 1.3'
gem 'pg', '~> 1.0'
gem 'rack', '>= 2.1.4'
gem 'rails', '~> 5.2'
# Support semantic logs in JSON format [https://logger.rocketjob.io/rails.html]
gem 'rails_semantic_logger'
gem 'rsolr', '~> 1.0'
gem 'rubyzip'
gem 'sanitize', '~> 6.0'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
gem 'schoolie', '0.1.3'
gem 'sidekiq', '~>6.5'
gem 'tinymce-rails'
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks', '~> 5'
gem 'twitter-bootstrap-rails'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
gem 'webpacker', '~> 4'
gem 'whenever', require: false
gem 'yard'
group :development, :test do
gem 'bixby'
gem 'byebug', platform: :mri
gem 'capybara'
gem 'capybara-screenshot'
gem 'database_cleaner'
gem 'fcrepo_wrapper'
gem 'hyrax-spec'
gem 'jasmine' # Needed for testing forms
gem 'launchy'
gem 'rails-controller-testing'
gem 'rspec', "~> 3.5"
gem 'rspec-activemodel-mocks'
gem 'rspec-its'
gem 'rspec-rails', "~> 3.5"
gem 'rspec_junit_formatter'
gem 'shoulda-matchers'
gem 'simplecov', require: false
gem 'simplecov-lcov', require: false
gem 'solr_wrapper', '>= 0.3'
gem 'vcr'
gem 'webdrivers', require: false
gem 'webmock', '~> 3.3'
end
group :development do
gem 'capistrano'
gem 'capistrano-bundler'
gem 'capistrano-passenger'
gem 'capistrano-rails'
gem 'capistrano-sidekiq', '~> 0.20.0'
gem 'github_changelog_generator'
gem 'listen', '~> 3.0.5'
gem 'pry'
gem 'pry-byebug'
gem 'puma'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
# Access an IRB console on exception pages or by using <%= console %> anywhere
# in the code.
gem 'web-console', '>= 3.3.0'
gem 'xray-rails'
end
extra_gems = "/opt/laevigata/shared/Gemfile.local"
eval File.read(extra_gems) if File.exist?(extra_gems) # rubocop:disable Security/Eval