forked from sul-dlss-deprecated/hydrus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
65 lines (55 loc) · 1.47 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
source :rubygems
source "http://sulair-rails-dev.stanford.edu"
# def dor_services_gem_params
# p = '/afs/ir/dev/dlss/git/lyberteam/dor-services-gem.git'
# if ENV['USE_LOCAL_DOR_SERVICES']
# return { :path => ENV['USE_LOCAL_DOR_SERVICES'] }
# elsif ENV['USE_SSH_OVER_OPENAFS_PATH']
# return { :git => "ssh://corn.stanford.edu#{p}", :branch => 'hydrus' }
# else
# return { :git => p, :branch => 'hydrus' }
# end
# end
gem 'dor-services', ">= 3.5.1" # , dor_services_gem_params
gem 'sul_chrome'
gem 'about_page'
gem 'blacklight', '~>3.4.2'
gem 'hydra-head', '~> 4.0.1', :git => 'http://github.com/projecthydra/hydra-head.git'
gem 'devise'
gem 'carrierwave'
gem 'rails', '3.2.3'
gem 'jquery-rails'
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'compass_twitter_bootstrap'
gem "compass-rails", "~> 1.0.0"
gem "compass-susy-plugin", "~> 0.9.0"
gem 'coffee-rails', '~> 3.2.1'
gem 'therubyracer'
gem 'uglifier', '>= 1.0.3'
end
# gems only needed for particular environments
group :test do
gem "cucumber-rails"
gem 'database_cleaner'
gem 'rspec-rails', '>=2.9.0'
gem 'simplecov'
gem 'simplecov-rcov'
end
group :development, :test do
gem 'jettywrapper'
gem 'awesome_print'
gem 'debugger'
gem 'sqlite3'
end
group :production do
gem 'mysql'
end
gem 'quiet_assets', :group => :development
#group :deployment do
# gem 'capistrano'
## gem 'capistrano-ext'
# gem 'rvm-capistrano'
# gem 'lyberteam-devel', '>=0.7.0'
## gem 'net-ssh-kerberos'
#end