-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
92 lines (85 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
# frozen_string_literal: true
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 'archivesspace-client'
gem 'blacklight_iiif_search'
gem 'bootsnap', require: false
gem 'bootstrap-sass', '~> 3.0'
gem 'bulkrax'
gem 'clamby'
gem 'coffee-rails', '~> 4.2'
gem 'devise'
gem 'devise-guests', '~> 0.6'
gem 'dotenv-rails'
gem 'dry-monads', '~> 1.4.0'
gem 'edtf', '~> 3.0.0'
gem 'edtf-humanize', '~> 1.0.0'
gem 'honeybadger', '~> 4.0'
gem 'http'
gem 'hydra-role-management'
gem 'hyrax', '3.4.2'
gem 'jbuilder', '~> 2.5'
gem 'jquery-rails'
gem 'mysql2', '~> 0.5'
gem 'noid-rails'
gem 'omniauth', '~> 1.9'
gem 'omniauth-shibboleth', '~> 1.3'
gem 'puma', '~> 5.6'
gem 'rails', '~> 5.1'
gem 'rdf-vocab', '<= 3.1.4'
gem 'riiif', '~> 2.0'
gem 'rsolr', '>= 1.0'
gem 'sass-rails', '~> 5.0'
gem 'sidekiq'
gem 'sidekiq-limit_fetch'
gem 'stackprof'
gem 'turbolinks', '~> 5'
gem 'twitter-typeahead-rails', '0.11.1.pre.corejavascript'
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'uglifier', '>= 1.3.0'
gem 'webpacker', '~> 5.x'
gem 'whenever', require: false
# Deprecation Warning: As of Curate v3, Zizia will be removed.
gem 'zizia', '~> 5.5.0'
group :development do
gem 'cap-ec2-emory', github: 'emory-libraries/cap-ec2'
gem "capistrano", "~> 3.17", require: false
gem 'capistrano-bundler', '~> 1.3'
gem 'capistrano-ext'
gem 'capistrano-passenger'
gem 'capistrano-rails'
gem 'capistrano-rails-collection'
gem 'fcrepo_wrapper'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'rubocop-rspec'
gem 'solr_wrapper', '>= 0.3'
gem 'web-console', '>= 3.3.0'
gem 'xray-rails'
end
group :development, :test do
gem 'bixby', "~> 3.0.1"
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] unless ENV['CI'] # Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'coveralls', require: false
gem 'factory_bot_rails', '~> 4.11.1'
gem 'ffaker'
gem 'pry' unless ENV['CI']
gem 'pry-byebug' unless ENV['CI']
gem 'rails-controller-testing'
gem 'rspec-its'
gem 'rspec-rails'
gem 'selenium-webdriver'
gem 'sqlite3', '~> 1.3.7'
gem 'webdrivers', '~> 3.0'
gem 'webmock'
gem 'yard'
end
group :test do
gem 'capybara'
gem 'rspec_junit_formatter'
gem 'shoulda-callback-matchers', '~> 1.1.1'
gem 'show_me_the_cookies'
end