forked from samvera-deprecated/hydradam
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
48 lines (35 loc) · 1.23 KB
/
Gemfile
File metadata and controls
48 lines (35 loc) · 1.23 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
source 'https://rubygems.org'
gem 'rails', '4.0.0'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 4.0.0'
gem 'coffee-rails', '~> 4.0.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.3.0'
end
gem 'jquery-rails'
gem 'sufia', '~> 3.0.0'
#gem 'sufia', path: '../sufia'
#gem 'hydra-pbcore', github:'curationexperts/hydra-pbcore', branch: 'devel'
#gem 'hydra-pbcore', :path=>'../hydra-pbcore'
gem 'active-fedora', github: 'projecthydra/active_fedora', ref: '739733f' # > 6.4.5
gem 'rdf', github: 'ruby-rdf/rdf', ref: '9b20f6d' # Keep until rdf 1.0.8 (or 1.1.0) is released
gem 'hydra-pbcore', '2.2.0rc1'
gem 'rails_admin', "~> 0.5.0"
group :development, :test do
#gem 'byebug' # This is a debugger, can be removed when not needed by the developer
gem 'jettywrapper'
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'sqlite3'
gem "unicorn"
end
group :production do
gem 'mysql2'
end
gem "devise"
gem "bootstrap-sass"
gem 'kaminari', github: 'harai/kaminari', branch: 'route_prefix_prototype'
gem 'em-ftpd', github: 'curationexperts/em-ftpd', branch: 'devel'