-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
43 lines (36 loc) · 950 Bytes
/
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
source 'http://rubygems.org'
gem 'rails', '3.2.11'
gem 'mysql2', '~> 0.3.14'
gem 'rake'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'sqlite3'
gem 'rubygems-bundler'
# Deploy with Capistrano
gem 'capistrano', '~> 3.0', require: false, group: :development
#gem 'rvm1-capistrano3', require: false
gem 'capistrano-rvm', '~> 0.1', require: false, group: :development
# Bundle the extra gems:
gem 'haml'
gem 'devise'
gem 'cells'
gem 'rack'
gem 'will_paginate'
gem 'paperclip', '~> 3.0'
gem 'profanity_filter'
gem 'rmagick', '2.13.2' #, :git=>'http://github.com/rmagick/rmagick.git'# gem 'mini_magick'
gem 'carrierwave'
gem 'mime-types'
gem 'cancan'
#Javascript runtime
gem 'execjs'
gem 'therubyracer'
group :assets do
gem 'sass-rails', "~> 3.2.0"
gem 'coffee-rails', "~> 3.2.0"
gem 'uglifier', ">= 1.0.3"
end
group :development do
gem 'capistrano-rails', '~> 1.1', require: false
gem 'capistrano-bundler', '~> 1.1', require: false
end