-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
84 lines (57 loc) · 1.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
source 'https://rubygems.org'
gem 'rails', '~>3.2.13'
gem 'blacklight', '4.0.1'
gem 'blacklight_advanced_search'
# gem 'solrizer-fedora', '3.0.0.pre1'
# gem 'solrizer', '3.0.0.pre4'
# gem 'hydra-head', "6.0.0.pre3"
# gem 'active-fedora', "6.0.0.pre5"
# gem 'solrizer-fedora', '~>3.0.0'
gem 'solrizer', '~>3.0.0'
gem 'hydra-head', '~>6.0.0'
gem 'active-fedora', '~>6.0.0'
gem 'sqlite3'
gem 'json'
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
gem 'compass-rails', '~> 1.0.0'
gem 'compass-susy-plugin', '~> 0.9.0'
end
gem 'jquery-rails'
# Use unicorn as the app server
gem 'unicorn'
# Deploy with Capistrano
gem 'capistrano', '2.12.0'
# To use debugger
# gem 'ruby-debug'
group :test do
group :cucumber do
gem 'cucumber'
gem 'cucumber-rails'
end
end
# For testing with rspec
group :development, :test do
gem 'rspec-rails', '>=2.9.0'
gem 'capybara'
gem 'launchy'
gem 'simplecov'
gem 'jettywrapper'
# gem 'database_cleaner'
end
gem "devise"
gem "bootstrap-sass", "~> 2.2.0"
gem "compass-rails", "~> 1.0.0", :group => :assets
gem "compass-susy-plugin", "~> 0.9.0", :group => :assets
gem 'libv8', '~> 3.11.8'
# gem "solrizer-fedora"
# gem 'solrizer', '~> 2.1.0'
gem "unicode", :platforms => [:mri_18, :mri_19]
# gem 'premis-modelmedusa', :path => "/var/lib/gems/1.8/gems/premis-modelmedusa-0.1.0"
gem 'medusa-premis-archive-tool', :path => "/var/lib/gems/1.8/gems/medusa-premis-archive-tool-0.5.0"
gem "devise-guests", "~> 0.3"
gem 'om', "~>2.0"