-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
105 lines (100 loc) · 3.64 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
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '~> 3.0.2'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
"https://github.com/#{repo_name}.git"
end
gem 'browser', '~> 5.3', '>= 5.3.1'
gem 'active-fedora', '~> 14.0'
gem 'base64', '0.1.0' # Downgrade from 0.2 so that it will match the version being used by passenger on the server
gem 'blacklight', git: 'https://github.com/UNC-Libraries/blacklight.git', branch: 'unc-development'
gem 'blacklight_advanced_search', '~> 8.0.0.alpha2'
gem 'blacklight_oai_provider', '7.0.2'
gem 'blacklight_range_limit', '~> 8.3.0'
gem 'bootstrap', '~> 4.0'
gem 'bulkrax', '6.0.1'
gem 'clamav-client', require: 'clamav/client'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 5.0.0'
gem 'devise', '~> 4.8.0'
gem 'devise-guests', '~> 0.8.1'
gem 'edtf-humanize', '~> 2.1'
# See https://github.com/rails/execjs#readme for more supported runtimes
gem 'execjs', '2.8.1'
gem 'httparty', '~>0.21.0'
gem 'hydra-editor', '~> 6.0'
gem 'hydra-role-management', '~> 1.0'
gem 'hyrax', git: 'https://github.com/UNC-Libraries/hyrax.git', branch: 'unc-hyrax-4-development'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.11.2'
# Use jquery as the JavaScript library
gem 'jquery-rails', '~> 4.5.0'
gem 'json-canonicalization', '0.3.1'
gem 'json-ld', '~> 3.2'
gem 'libv8', '~> 7.3'
# linkeddata gem is released with rdf gems and should be the same version as rdf
gem 'sparql', '3.2.5'
gem 'ldp', '~> 1.1'
gem 'linkeddata'
gem 'logger', '1.5.3'
gem 'loofah', '~>2.19.1'
gem 'mini_magick', '~>4.12.0'
gem 'mini_racer', '~> 0.2.15', platforms: :ruby
gem 'nokogiri', '~>1.14.2'
gem 'omniauth', '~> 2.0'
gem 'omniauth-rails_csrf_protection'
gem 'omniauth-shibboleth', '~> 1.3'
# Cannot use 6.0.23 because it adds rackup as a dependency, which leads to conflicts for now
gem 'passenger', '6.0.22', require: 'phusion_passenger/rack_handler'
# Use postgresql as the database for Active Record
gem 'pg', '~> 1.3.5'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.0'
gem 'rdf', git: 'https://github.com/ruby-rdf/rdf.git', branch: '3.2.11-patch'
# Use Redis adapter to run Action Cable in production
gem 'redis', '~> 4.5.0'
gem 'riiif', '~> 2.5.0'
gem 'roo', '~>2.9.0'
gem 'rsolr', '~> 2.5.0'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 6.0.0'
gem 'sidekiq', '~> 6.5'
gem 'sidekiq-status', '~> 3.0.0'
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks', '~> 5.2.1'
gem 'twitter-typeahead-rails', '0.11.1.pre.corejavascript'
# Use terser as compressor for JavaScript assets
gem 'terser', '~> 1.1'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', '~> 11.1.3', platform: :mri
gem 'database_cleaner'
gem 'fcrepo_wrapper', '~> 0.9.0'
gem 'rspec-rails', '~> 5.1.2'
# Rubocop for style and error checking (linter)
gem 'rubocop'
gem 'rubocop-rails'
gem 'rubocop-rspec'
gem 'solr_wrapper', '~> 4.0.2'
gem 'rubocop-github'
gem 'rubocop-performance', require: false
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'listen', '~> 3.7.0'
gem 'puma'
gem 'web-console', '~> 3.7.0'
end
group :test do
gem 'capybara', '~> 3.36'
gem 'factory_bot_rails', '~> 6.2.0'
gem 'ffaker'
gem 'rspec-mocks'
gem 'selenium-webdriver', '~> 4.8'
gem 'shoulda-matchers', '~> 5.3.0'
gem 'simplecov'
gem 'webrick'
gem 'webdrivers', '~> 5.3', require: false
gem 'webmock', '~> 3.14.0'
end