forked from MarkUsProject/Markus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
57 lines (52 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
# 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", "2.3.10"
gem "db_populate"
gem "rubyzip"
gem "ya2yaml"
gem "i18n"
gem "will_paginate"
gem "fastercsv"
gem "mongrel_cluster"
gem "routing-filter"
# 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
gem "mysql"
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-ruby', :require => 'sqlite3'
end
# Other development related required gems. You don't need them
# for production.
group :development, :test do
gem "shoulda"
gem "selenium-client", "~>1.2.15"
gem "machinist"
gem "faker"
gem "factory_data_preloader"
gem "time-warp"
gem "ruby-debug"
gem "mocha"
end