-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
80 lines (73 loc) · 2.23 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
source 'https://rubygems.org'
# This should be everything except :deploy; And by default, we mean any of
# the environments that are not used to execute the deploy scripts
group :default do
gem 'rails', '3.2.11'
gem 'pg'
gem 'unicorn'
gem 'common_repository_model', git: 'git://github.com/ndlib/common_repository_model'
gem 'sufia', git: 'git://github.com/ndlib/sufia.git', branch: 'sufia-for-curate-nd'
gem 'curate', git: 'git://github.com/vecnet/curate.git', branch: 'vecnet'
gem 'blacklight-hierarchy', git: 'git://github.com/banurekha/blacklight-hierarchy.git'
gem 'solrizer'#, git: 'git://github.com/ndlib/solrizer.git'
gem 'solrizer-fedora' # just to get resolrizer task
gem 'rsolr', git: 'git://github.com/jeremyf/rsolr.git', branch: 'adding-connection-information-to-error-handling'
gem 'jettywrapper'
gem 'jquery-rails'
gem 'decent_exposure'
gem 'rake'
gem 'resque-pool'
gem 'morphine'
gem "unicode", :platforms => [:mri_18, :mri_19]
gem 'warden', '~> 1.2.3'
gem 'simple_form'
gem 'roboto'
gem 'active_attr'
gem 'browser'
gem 'rubydora', "~>1.6.4"
gem 'noids_client', git: 'git://github.com/ndlib/noids_client'
# Need rubyracer to run integration tests.....really?!?
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', :platforms => :ruby
gem 'method_decorators'
gem 'rabl'
gem 'chronic'
end
group :headless do
gem 'clamav'
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'bootstrap-sass', '~> 2.2.0'
gem 'coffee-rails', '~> 3.2.1'
gem 'compass-rails'
gem 'sass-rails', '~> 3.2.3'
gem 'uglifier', '>= 1.0.3'
gem 'font-awesome-sass-rails', '~> 2.0.0.0'
end
group :test do
gem 'capybara'
gem 'database_cleaner'
gem 'factory_girl_rails'
gem 'rspec-html-matchers'
gem 'rspec-rails'
gem 'webmock'
end
group :test, :development do
gem 'debugger', ">= 1.4"
gem 'rails_best_practices'
gem 'guard', :require => false
gem 'guard-rails_best_practices'
gem 'guard-rspec', :require => false
gem 'guard-spork'
gem 'sextant'
gem 'simplecov'
gem 'method_locator'
gem 'spork', '~> 1.0rc'
gem 'ruby_gntp'
gem 'sqlite3'
end
group :deploy do
gem 'capistrano'
end