-
Notifications
You must be signed in to change notification settings - Fork 6
/
Gemfile
115 lines (80 loc) · 2.67 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
107
108
109
110
111
112
113
114
115
source 'https://rubygems.org'
gem 'dotenv', require: 'dotenv/load'
# loads environment variables from .env into ENV in development
# https://github.com/bkeepers/dotenv/
gem 'psych', '<= 4'
gem 'rails', '5.2.6'
# Use rubyzip to handle Zipped content files from Drupal
gem 'rubyzip'
gem 'sprockets-rails', :require => 'sprockets/railtie'
# Use mysql2 for the staging environment
gem 'mysql2', '~> 0.5.6'
# gem 'sass-rails', '~> 4.0.2'
gem 'bootstrap-sass', '3.3.4.1'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails'
gem 'jquery-ui-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# for handling slugs in URLS instead of IDs
gem 'friendly_id', '~> 5.2.4' # Note: You MUST use 5.0.0 or greater for Rails 4.0+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '2.10'
# Use Figaro to manage sensitive application configuration
gem 'figaro'
# Use Resque to handle background tasks
gem 'resque', :require => 'resque/server'
# Use Nest because some inherited config uses Nest
gem 'nest'
gem 'discard', '~> 1.2'
# Use Namae to try to parse arbitrary names
gem 'namae'
# Configure email alerts on exception
gem 'exception_notification'
# Use ParseConfig to do some exception mailer related conf
gem 'parseconfig'
# Use rest-client to handle building calls to eXist
gem 'rest-client'
# Use rails_config gem for less crappy custom config
gem 'rails_config'
gem 'puma', '~> 3.12', '>= 3.12.6'
# Use mods_display to generate html from mods
gem 'mods_display', '~> 0.3'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
gem "blacklight"
gem 'blacklight-gallery'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use debugger
# gem 'debugger', group: [:development, :test]
gem "mini_magick"
group :development, :test do
gem "pry"
gem "rspec-rails", "~> 3"
gem "rspec-its"
gem "factory_bot_rails"
gem 'faker'
end
gem "devise"
gem "devise-guests", "~> 0.3"
gem 'devise_invitable', '~> 2.0.0'
gem "cancancan"
gem "rsolr"
gem 'simplecov', :require => false, :group => :test
gem 'simplecov-json', :require => false, :group => :test
gem 'simplecov-rcov', :require => false, :group => :test
gem "git"
gem "json", "~> 2.3"
gem 'simple_form'
gem 'openseadragon'
gem "haml-rails", "~> 2.0"
gem 'carrierwave', '~> 1.3.1'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 5.0.0'