-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
61 lines (48 loc) · 1.4 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
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'mysql2', '< 0.5.3' # because incompatible w/ MySQL we have deployed (5.1)
gem 'rails', '~> 5.2.2'
gem 'responders' # controller-level `respond_to' feature now in `responders` gem as of rails 4.2
gem 'sass-rails', '~> 5.0' # use SCSS as CSS preprocessor
gem 'jbuilder', '~> 2.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'faraday'
gem 'simhash' # to compare mementos
gem 'phantomjs' # headless WebKit scriptable with a JavaScript API
gem 'uglifier' # js compression
gem 'assembly-image', '>= 1.7.4' # 1.7.3 has a potential issue with a rubocop autofix
gem 'fastimage'
gem 'mini_magick'
gem 'daemons' # ruby code can be run as daemon with simple start/stop/restart commands.
gem 'delayed_job_active_record'
gem 'whenever', require: false
gem 'config'
gem 'druid-tools'
gem 'honeybadger', '~> 4.2' # for exception reporting
gem 'okcomputer' # for 'upness' monitoring
group :development, :test do
gem 'rubocop', '~> 0.53.0' # avoid code churn due to rubocop changes
gem 'sqlite3'
end
group :development do
gem 'spring'
end
group :test do
gem 'capybara'
gem 'coveralls', require: false
gem 'database_cleaner'
gem 'rails-controller-testing'
gem 'rspec-rails'
gem 'vcr'
gem 'webmock'
end
group :deployment do
gem 'capistrano-bundler'
gem 'capistrano-passenger'
gem 'capistrano-rails'
gem 'dlss-capistrano'
end
group :doc do
gem 'sdoc'
end