forked from MarkUsProject/Markus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
82 lines (74 loc) · 2.36 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
81
82
# Gemfile
#
# For production mode PostgreSQL option :
# bundle install --without development test mysql sqlite
# For production mode MySQL option :
# bundle install --without development test postgresql sqlite
#
# Make sure to decleare at least one 'source'
source 'http://rubygems.org'
# Bundler requires these gems in all environments
gem "rails", "3.0.13"
gem 'exception_notification'
#gem "prototype-rails" Will be needed with Rails3.1
gem "rubyzip"
gem "ya2yaml"
gem "i18n"
gem "will_paginate"
gem 'fastercsv', :platforms => :ruby_18
gem "routing-filter"
gem "dynamic_form"
# To be removed
gem "prototype_legacy_helper",
"0.0.0",
:git => "git://github.com/rails/prototype_legacy_helper.git"
# If you are a MarkUs developer and use PostgreSQL, make sure you have
# PostgreSQL header files installed (e.g. libpq-dev on Debian/Ubuntu).
# Then install your bundle by:
# bundle install --without mysql sqlite
group :postgresql do
gem "pg"
end
# If you are a MarkUs developer and use MySQL, make sure you have
# MySQL header files installed (e.g. libmysqlclient-dev on Debian/Ubuntu).
# Then install your bundle by:
# bundle install --without postgresql sqlite
group :mysql do
# FIXME: mysql2 0.3 is incompatible with rails 3.0.x which we use currently
gem "mysql2", "< 0.3"
end
# If you are a MarkUs developer and use SQLite, make sure you have
# SQLite header files installed (e.g. libsqlite3-dev on Debian/Ubuntu).
# Then install your bundle by:
# bundle install --without postgresql mysql
group :sqlite do
gem 'sqlite3'
end
# Other development related required gems. You don't need them
# for production.
group :development, :test do
gem "rdoc"
gem "rcov", :platforms => :mri_18
gem "simplecov", :platforms => :mri_19
gem "shoulda"
gem "machinist", "< 2"
gem "faker"
gem "railroady"
gem "time-warp"
gem "ruby-debug", :platforms => :mri_18
gem "debugger", :platforms => :mri_19
gem "mocha"
end
# If you plan to use unicorn servers for production
# make sure that this group is included. You don't need this
# group if you are using Phusion Passenger.
group :unicorn do
gem "unicorn"
end
# If you want to be able to view and annotate PDF files,
# make sure that this group is included. GhostScript has to be
# installed for rghost to work well. You also need to set
# the PDF_SUPPORT bool to true in the config file(s).
group :rghost do
gem "rghost"
end