forked from MarkUsProject/Markus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
106 lines (95 loc) · 2.72 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
100
101
102
103
104
105
106
# 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 declare at least one 'source'
source 'https://rubygems.org'
# Bundler requires these gems in all environments
gem 'rails', '3.2.18'
gem 'rubyzip'
gem 'ya2yaml'
gem 'i18n'
gem 'will_paginate'
gem 'dynamic_form'
gem 'exception_notification'
gem 'minitest',"4.7.5", platforms: :ruby_20
gem 'auto_complete'
gem 'json'
gem 'coffee-script'
gem 'jquery-rails'
gem 'prototype-rails' # FIXME: Will be needed with Rails3.1
gem 'rugged'
gem 'gitolite'
gem 'activerecord-import'
gem 'strong_parameters' # NOTE: this goes away when upgrading to Rails4
group :assets do
gem 'tilt', '~> 1.3.7'
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
gem 'execjs'
gem 'libv8'
gem 'therubyracer'
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
# Gems only used for development should be listed here so that they
# are not loaded in other environments.
group :development do
gem 'quiet_assets'
gem 'better_errors'
gem 'binding_of_caller'
gem 'awesome_print'
gem 'debugger', :platforms => :mri_19
end
group :test do
gem 'simplecov'
gem 'shoulda'
gem 'machinist', '< 2'
gem 'time-warp'
gem 'mocha', require: false
gem 'rspec-rails', '~> 3.0'
gem 'factory_girl_rails'
end
# Gems needed (wanted) for both development and test can be
# listed here
group :development, :test do
gem 'faker' # required for database seeding
gem 'byebug', :platforms => [:mri_20, :mri_21]
end
# Gems not needed at runtime should go here so that MarkUs does
# not waste time/memory loading them during boot
group :offline do
gem 'rdoc'
gem 'railroady'
gem 'thin'
gem 'rubocop'
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