-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGemfile
89 lines (83 loc) · 2.73 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
"https://github.com/#{repo_name}.git"
end
ruby '>= 2.4.0', '<= 2.5.99'
gem 'bootstrap-sass', ">= 3.4.1"
gem 'bundler', "~> 1"
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.2'
gem 'coveralls', require: false
gem 'darlingtonia', '>= 3.2.2'
gem 'devise'
gem 'devise-guests', '~> 0.6'
gem 'dotenv-rails', '~> 2.2.1'
gem 'hydra-file_characterization', '~> 1.1'
gem 'hydra-role-management', '~> 1.0.0'
gem 'hyrax', '2.5.0'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
gem 'jquery-rails'
gem 'loofah', '>= 2.2.3'
gem 'mysql2', '~> 0.5'
gem 'pkg-config', '~> 1.1'
# Use Puma as the app server
gem 'puma', '~> 5.5'
gem 'rack', '>= 2.0.6'
gem 'rails', '~> 5.1.6'
gem 'redcarpet'
gem 'retries'
gem 'riiif', '~> 1.1'
# Error reporting tool
gem 'rollbar'
gem 'rsolr', '>= 1.0'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
gem 'sidekiq', '~> 5.2'
gem 'sidekiq-failures'
gem 'sidekiq-status'
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks', '~> 5'
# gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
gem 'uglifier', '>= 1.3.0' # Use Uglifier as compressor for JavaScript assets
gem 'whenever', require: false
group :development do
# Use Capistrano for deployment automation
gem "capistrano", "~> 3.11", require: false
gem 'capistrano-bundler', '~> 1.3'
gem 'capistrano-ext'
gem 'capistrano-passenger'
gem 'capistrano-rails'
gem 'capistrano-rails-collection'
gem 'capistrano-sidekiq', '~> 0.20.0'
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'web-console', '>= 3.3.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
group :development, :test do
gem 'bixby', '~> 1.0.0'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'rb-readline' # For byebug
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '~> 2.13'
gem 'factory_bot_rails'
gem 'fcrepo_wrapper'
gem 'ffaker'
gem 'rspec-rails', '~> 3.8'
gem 'rubocop-rspec'
gem 'selenium-webdriver'
gem 'simplecov', '~> 0.16.1'
gem 'solr_wrapper'
gem 'spring-commands-rspec'
gem 'webmock'
gem 'xray-rails'
end
group :test do
gem 'rspec-retry' # Unlike rspec, this doesn't need to be included in development group
end