This repository has been archived by the owner on Dec 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGemfile
106 lines (76 loc) · 1.9 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
source 'https://rubygems.org'
gem 'bundler', '>= 1.2.0'
gem 'sitemap_generator'
gem 'editstore', '>= 2.0.2'
gem 'revs-utils', '>= 2.1.22'
gem 'rails', '~> 4.2.11', '>= 4.2.11.1'
gem 'responders', '~> 2.0'
gem 'nokogiri', '>= 1.10.3'
gem 'is_it_working-cbeer', require: 'is_it_working'
# user authentication and roles
gem 'devise', '>4'
gem 'cancan'
gem 'faraday'
gem 'active_model_serializers'
gem 'rails_autolink'
gem 'ranked-model'
gem 'rack-attack'
gem 'rack-timeout', require: 'rack/timeout/base'
gem 'rack-utf8_sanitizer'
gem 'friendly_id', '>= 5.0.0'
# image (user avatar) uploading
gem 'carrierwave'
gem "mini_magick"
gem 'whenever', :require => false
gem 'addressable'
gem 'chronic'
# paging
gem 'kaminari'
gem 'blacklight', "<=5.14"
gem 'blacklight-marc'
gem 'druid-tools', '>= 0.2.0'
# Gems used only for assets and not required
# in production environments by default.
gem 'sass-rails', '~> 5.0.0.beta1'
gem 'coffee-rails', '~> 4.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'mini_racer'
gem 'uglifier', '>= 1.0.3'
gem 'lograge'
group :development do
gem 'thin'
gem 'better_errors'
gem 'binding_of_caller'
gem 'launchy'
gem 'pry-rails'
gem 'quiet_assets'
end
group :test do
gem 'rspec-rails'
gem 'capybara'
end
group :development, :test do
gem 'solr_wrapper'
gem 'sqlite3', '~> 1.3.6'
end
group :staging, :production do
gem 'mysql2', '~>0.4.0' #0.5 does not work with rails 4
end
# gems necessary for capistrano deployment
group :deployment do
gem 'capistrano', '~> 3.0'
gem 'capistrano-bundler'
gem 'capistrano-rails'
gem 'dlss-capistrano'
gem 'capistrano-rvm'
gem 'capistrano-shared_configs'
end
gem 'jquery-rails'
gem 'rest-client', '>2'
gem 'json', '~> 1.8'
gem 'bootstrap-sass', '>= 3.4.1'
gem 'font-awesome-rails'
gem 'autoprefixer-rails', '>= 5.2.1'
gem 'honeybadger', '~> 2.0'
#Bulk Metadata Loading Gems
gem 'countries'