forked from MarkUsProject/Markus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
136 lines (124 loc) · 3.49 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
# 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', '~> 4.2.0'
gem 'rubyzip'
gem 'ya2yaml'
gem 'i18n'
gem 'dynamic_form'
gem 'exception_notification'
gem 'activerecord-import'
gem 'upsert'
gem 'auto_complete'
gem 'best_in_place'
gem 'coffee-script'
gem 'git'
gem 'rugged', '~> 0.21.4'
gem 'gitolite'
gem 'gitolite-rugged'
gem 'jquery-rails'
gem 'responders', '~> 2.0'
gem 'sprockets', '~> 2.12.0'
gem 'rails-html-sanitizer'
gem 'rails-deprecated_sanitizer'
gem 'redcarpet', '~> 3.0.0'
gem 'tilt', '~> 1.3.7'
gem 'sass-rails', '5.0.0.beta1'
gem 'coffee-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.3.0'
gem 'execjs'
gem 'libv8'
gem 'therubyracer', '>= 0.11.1'
gem 'json'
gem 'minitest'
gem 'autoprefixer-rails'
gem 'resque'
gem 'net-ssh'
gem 'net-scp'
gem 'actionpack-action_caching'
gem 'actionpack-page_caching', '~>1.0.0'
gem 'actionpack-xml_parser', '~>1.0.0'
gem 'actionview-encoded_mail_to', '~>1.0.4'
gem 'activerecord-session_store', '~>0.1.0'
gem 'rails-observers', '~>0.1.1'
gem 'rails-perftest', '~>0.0.2'
gem 'arel', '~>6.0.2'
gem 'jbuilder', '~> 2.0'
# 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 'awesome_print'
gem 'better_errors'
gem 'binding_of_caller'
gem 'spring'
gem 'debugger', :platforms => :mri_19
gem 'quiet_assets'
gem 'bullet'
end
group :test do
gem 'factory_girl_rails'
gem 'machinist', '< 2'
gem 'mocha', require: false
gem 'shoulda'
gem 'simplecov'
gem 'time-warp'
gem 'database_cleaner'
gem 'shoulda-callback-matchers', '~> 1.1.1'
end
# Gems needed (wanted) for both development and test can be
# listed here
group :development, :test do
gem 'byebug', :platforms => [:mri_20, :mri_21, :mri_22, :mri_23]
gem "rspec-rails", '~> 3.0'
end
# Gems needed (wanted) for development, test and production_test
# can be listed here
# production_test is for testing a production-like deployment,
# but using a seeded database
group :development, :test, :production_test do
gem 'faker' # required for database seeding
gem 'httparty'
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 'railroady'
gem 'rdoc'
gem 'rubocop'
gem 'rubocop-git'
gem 'thin'
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