This repository was archived by the owner on Jun 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
63 lines (57 loc) · 1.54 KB
/
Gemfile
File metadata and controls
63 lines (57 loc) · 1.54 KB
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
source 'https://rubygems.org'
ruby '2.3.8'
gem 'rails', '4.2.11.1'
gem 'blacklight', '~> 5.16'
gem 'hydra-head', '~> 7.2.0'
gem 'ddr-alerts', '~> 1.1.0'
gem 'devise' # must be explicitly required
gem 'ddr-models', '2.11.0'
gem 'log4r'
gem 'bootstrap-sass', '~> 3.4.1'
gem 'autoprefixer-rails'
gem 'sass-rails', '~> 5.0.4'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'mini_racer', platforms: :ruby, group: :production
gem 'jquery-rails'
gem 'jbuilder', '~> 2.0'
gem 'bootswatch-rails'
gem 'font-awesome-sass', '~> 4.6.2'
gem 'openseadragon', '~> 0.4.0'
gem 'blacklight-gallery', '~> 0.4.1'
gem 'rubyzip', '~> 1.2.1'
gem 'blacklight_range_limit', '~> 5.2.0'
gem 'prawn'
gem 'fastimage'
gem 'bootstrap-select-rails', '~> 1.6.3'
gem 'nokogiri'
gem 'edtf-humanize', '~> 0.0.7'
gem 'rails_autolink'
gem 'ruby-progressbar'
gem 'jstree-rails-4', '~> 3.3.4'
gem 'webvtt-ruby', git: 'https://github.com/opencoconut/webvtt-ruby.git', ref: 'd0b696929c540eecc9c040c271fa92822f1f6ae0'
# Rails 4.2+
gem 'responders', '~> 2.0'
gem 'web-console', '~> 2.0', group: :development
gem 'sprockets-rails', '>= 2.1.4'
gem 'sdoc', '~> 0.4.0', group: :doc
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'bump'
gem 'byebug'
end
group :development, :test do
gem 'sqlite3'
gem "rspec-rails", "~> 3.4"
gem "rspec-its"
gem 'capybara', '~> 2.0'
gem "jettywrapper", "~> 1.8" # 1.x - fcrepo3 / 2.x - fcrepo4
gem 'factory_girl_rails', '~> 4.4'
gem 'launchy'
gem 'database_cleaner'
gem 'orderly'
end
group :production do
gem 'mysql2'
end