forked from banurekha/curate_nd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
66 lines (58 loc) · 1.53 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
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 'mysql2'
gem 'sufia', git: 'git://github.com/ndlib/sufia.git', branch: 'sufia-for-curate-nd'
gem 'curate', git: 'git://github.com/ndlib/curate.git'
gem 'jettywrapper'
gem 'jquery-rails'
gem 'decent_exposure'
gem 'devise_cas_authenticatable'
gem 'rake'
gem 'resque-pool'
gem 'morphine'
gem "unicode", :platforms => [:mri_18, :mri_19]
gem "devise"
gem "devise-guests", "~> 0.3"
# Need rubyracer to run integration tests.....really?!?
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', :platforms => :ruby
gem 'bootstrap-datepicker-rails'
gem 'namae'
end
group :pre_production, :production do
gem "sentry-raven"
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'
end
group :test do
gem 'capybara'
gem 'database_cleaner'
gem 'factory_girl_rails'
gem 'rspec-html-matchers'
gem 'rspec-rails'
gem 'webmock'
gem 'timecop'
gem 'poltergeist'
end
group :development do
gem 'debugger', ">= 1.4"
gem 'rails_best_practices'
gem 'sextant'
gem 'simplecov'
gem 'method_locator'
end
group :deploy do
gem 'capistrano'
end