forked from sanger-archive/cluster_view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
43 lines (33 loc) · 1.11 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
source 'http://rubygems.org/'
gem 'rails', '= 2.3.5'
gem 'haml', '~> 2.2.3'
gem 'compass', '~> 0.8.0'
gem 'formtastic', '~> 0.9.8'
gem 'authlogic'
# NOTE: using fork of the thoughtbot gem for :database storage module
# and then a fork of that which adds our changes for ImageMagick compat
gem 'paperclip', '~> 2.3.0', :git => 'http://github.com/cbrunnkvist/paperclip.git'
# These two are only needed in the deployed environments, and in test
gem 'mysql'
gem 'net-ldap'
gem "cbrunnkvist-psd_logger"
group :development do
gem 'ruby-debug19', :require => false #either use [...]19 or github.com/mark-moseley/ruby-debug.git
end
# v1.3.0+ and onwards depends libsqlite3-dev 3.6.16+
gem 'sqlite3-ruby', '~> 1.2.0', :require => 'sqlite3', :groups => [:development, :test, :cucumber]
gem 'factory_girl', :groups => [:test, :cucumber]
group :test do
gem 'test-unit', '~> 1.2.3'
gem 'rspec-rails', '~> 1.3.2'
gem 'nokogiri'
gem 'webrat'
gem 'ci_reporter', :require => false
end
group :cucumber do
gem "cucumber-rails"
gem "database_cleaner", :require => false
end
group :deployment do
gem 'thin'
end