-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
87 lines (78 loc) · 2.44 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
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'rails', '6.0.4'
gem 'active-fedora', '~> 8.7'
gem 'active-triples', git: 'https://github.com/cul/ActiveTriples', branch: 'deprecation_update'
gem 'addressable'
gem 'blacklight', '~> 7.29'
gem 'blacklight_oai_provider'
gem 'blacklight_range_limit',
git: 'https://github.com/JackBlackLight/blacklight_range_limit.git', branch: 'use_blacklight_component'
gem 'bootsnap'
gem 'cancancan'
gem 'cul-ldap'
gem 'cul_omniauth', '>= 0.7.0'
gem 'deprecation', '>= 1.1.0'
gem 'devise'
gem 'fancybox2-rails' # Used in helper classes. TODO: Confirm that this is needed and used by the application.
gem 'gaffe'
gem 'grape', '>= 1.8.0'
gem 'grape-entity', '>= 1.0.0'
# pinning swagger to commit that supports braces in array params; functionality is broken in next version - 0.31.0
gem 'grape-swagger', git: 'https://github.com/ruby-grape/grape-swagger', ref: 'da351d0f99228f31329210d21b975a64500e73ab'
gem 'http'
gem 'jbuilder'
gem 'jquery-rails'
gem 'mail', '~> 2.8'
gem 'multipart-post', '~>2.0.0'
gem 'net-scp', '~> 4.0.0'
gem 'net-ssh', '~> 7.2.0'
gem 'nokogiri', '~> 1.15.2'
gem 'okcomputer'
gem 'premailer-rails'
gem 'rainbow'
gem 'resque', '~> 2.0'
gem 'rinku'
gem 'rsolr-ext'
gem 'rubyzip', require: 'zip'
gem 'sitemap_generator'
gem 'turbolinks'
gem 'uglifier'
gem 'unicode'
gem 'voight_kampff'
gem 'webpacker', '~> 5.4.0'
gem 'whenever', require: false
gem 'will_paginate'
gem 'wowza-secure_token'
# Database
gem 'mysql2', '>= 0.5.6'
gem 'sqlite3', '~> 1.4'
group :development do
gem 'listen'
gem 'spring'
end
group :development, :test do
# Deploying by using Capistrano. Using rails, rvm and passenger cap gems as
# required by our deployment environment.
gem 'capistrano', '3.17', require: false
gem 'capistrano-cul', require: false
gem 'capistrano-passenger', '~> 0.2', require: false
gem 'capistrano-rails', '~> 1.4', require: false
gem 'capistrano-resque', '= 0.2.1', require: false
gem 'rubocul', '~> 4.0', require: false
gem 'byebug'
gem 'capybara', '~> 3.39'
gem 'database_cleaner'
gem 'equivalent-xml'
gem 'factory_bot_rails'
gem 'jettywrapper', '>=1.4.0', git: 'https://github.com/samvera-deprecated/jettywrapper.git', branch: 'master'
gem 'json_spec'
gem 'rspec-its'
gem 'rspec-rails'
gem 'selenium-webdriver', '~> 4.11'
gem 'simplecov', '>= 0.22.0', require: false
gem 'solr_wrapper', '~> 4.0'
gem 'webmock'
end
# Use Puma for local development
gem 'puma', '~> 5.2'