forked from MarkUsProject/Markus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
99 lines (88 loc) · 2.82 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# 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.1.12'
gem 'rubyzip'
gem 'ya2yaml'
gem 'i18n'
gem 'will_paginate'
gem 'fastercsv', :platforms => :ruby_18
gem 'routing-filter'
gem 'dynamic_form'
# The 'exception_notification' gem version 4 is not compatible with
# Rails 3.0.x
gem 'exception_notification', '<4.0'
gem 'json'
gem 'coffee-script'
gem 'jquery-rails'
gem 'prototype-rails' #Will be needed with Rails3.1
group :assets do
gem 'tilt', '~> 1.3.7'
gem 'sass-rails', '~> 3.1.5'
gem 'coffee-rails', '~> 3.1.1'
gem 'uglifier', '>= 1.0.3'
end
# 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 '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
# FIXME: shoulda (>=4.0) introduces several deprecation warnings in tests
# we have to fix before doing an upgrade
gem 'shoulda', '<3.4'
# FIXME: shoulda-matchers (>= 2) is incompatible with Ruby 1.8
# Remove next line once MarkUs will not support Ruby 1.8,
# as shoulda-matchers is a dependency of shoulda
gem 'shoulda-matchers', '~>1.5'
gem 'machinist', '< 2'
gem 'faker'
gem 'railroady'
gem 'time-warp'
gem 'mocha', :require => false
end
group :development do
gem 'ruby-debug', :platforms => :mri_18
gem 'debugger', :platforms => :mri_19
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