This repository has been archived by the owner on Jan 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGemfile
83 lines (72 loc) · 2.46 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
source 'https://rubygems.org'
gem 'rails', '~> 5.2'
gem 'config'
gem 'devise', '~> 4.0'
gem 'devise-remote-user', '~> 1.0'
gem 'jquery-rails'
gem 'dynamic_form'
# iso-639 0.3.0 isn't compatible with ruby 2.5. This declaration can be dropped when we upgrade to ruby 2.6
# see https://github.com/alphabetum/iso-639/issues/12
gem 'iso-639', '~> 0.2.10'
gem 'bootstrap-datepicker-rails'
gem 'carrierwave', '~> 1.0'
gem 'coderay'
gem 'validates_email_format_of'
gem 'whenever', '~> 0.9'
# Stanford stuff
gem 'assembly-objectfile', '~> 1.5'
# We don't require this by default, because we need it to load after hydrus models
# or we'll get a superclass mismatch for Hydrus::Item
gem 'dor-services', '~> 8.0', require: false
gem 'dor-services-client', '~> 7.0'
gem 'dor-workflow-client', '~> 3.22'
gem 'rubydora', '~> 2.1'
gem 'bagit', '~> 0.4'
gem 'blacklight', '~> 6.19'
gem 'cancancan', '~> 1.17'
# Use okcomputer to monitor the application
gem 'okcomputer'
gem 'bootsnap'
gem 'sassc', '~> 2.0.1' # Pinning to 2.0 because 2.1 requires GLIBC 2.14 on deploy
gem 'sass-rails', '~> 5.0'
gem 'coffee-rails', '~> 5.0'
gem 'uglifier', '>= 1.0.3'
# gems only needed for particular environments
group :development, :test do
gem 'factory_bot_rails'
gem 'sqlite3', '~> 1.3.13'
gem 'rspec-rails', '~> 3.1'
gem 'capybara', '~> 2.18'
gem 'simplecov', '~> 0.17.1', require: false # 0.18 breaks reporting to CodeClimate
gem 'equivalent-xml'
gem 'awesome_print'
gem 'launchy'
gem 'byebug'
gem 'letter_opener'
gem 'pry'
gem 'rubocop'
# gem 'rubocop-rspec', '~> 1.5'
gem 'rails-controller-testing'
end
group :development do
gem 'listen', '>= 3.0.5', '< 3.2'
# 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 :production do
# pinning because the latest mysql2 gem prevents successful deployment (a native extension compilation
# error is raised). jcoyne suspects that the newer gem version requires a newer version of glibc than
# is on the VM, and that provisioning a newer VM with a newer version of MySQL (and its newer glibc
# requirement) would solve this dependency issue and allow use of the latest gem.
gem 'mysql2', '~> 0.4.10'
end
group :deployment do
gem 'capistrano', '~> 3.3'
gem 'capistrano-rails'
gem 'capistrano-passenger'
gem 'dlss-capistrano'
end
gem 'honeybadger', '~> 4.2'
gem 'lograge'
gem 'rsolr', '~> 2.2'