-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
61 lines (37 loc) · 988 Bytes
/
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
source 'http://rubygems.org'
gem 'rails', '3.2.2'
gem 'sqlite3'
#gem 'activeadmin'
gem 'json'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails'
gem 'uglifier'
end
group :development do
gem 'rails-erd'
end
gem 'jquery-rails'
# Use unicorn as the web server
gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'ruby-debug'
gem 'execjs'
gem 'therubyracer'
gem 'sorcery' # access control
gem 'formtastic' # better forms
gem 'rjb' # ruby java bridge
gem 'thin' # better webserver than webrick
gem 'delayed_job' # queueing
gem 'pry' # nicer rails console
gem 'rsruby' # R interface
gem 'spreadsheet' # xls file output
gem 'zip' # required by roo
gem 'nokogiri', '1.5.0' # nokogiri is required by roo but 1.5.2 broke google docs import
gem 'roo' # google docs import
gem 'haml' # some widgets are in haml
gem 'bio' # for genbank and fasta export
gem 'xml-simple'