forked from cmoa/cmoa-app-cms
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
45 lines (33 loc) · 867 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
44
45
source 'https://rubygems.org'
# Rails gems & helpers
gem 'rails', '4.0.0'
gem 'pg'
gem 'sass-rails', '~> 4.0.0'
gem 'compass-rails', '~> 2.0.0'
gem 'bootstrap-sass'
gem 'font-awesome-sass', '~> 4.5.0'
gem 'uglifier', '>= 1.3.0'
gem 'jquery-rails'
# Rails Observers (removed in v4)
gem 'rails-observers'
# Authentication
gem 'devise'
# Geo data for country dropdown
gem 'carmen'
# Generates UUIDs
gem 'uuidtools'
# Uploading to S3
gem 'paperclip', :git => 'git://github.com/thoughtbot/paperclip.git'
gem 'aws-sdk'
# Soft delete
gem 'acts_as_paranoid', :git => 'git://github.com/byroot/rails3_acts_as_paranoid.git', :branch => 'rails4.0'
# Markdown parser
gem 'redcarpet'
# RSS feed parser
gem 'feedzirra', :git => 'git://github.com/pauldix/feedzirra.git'
# Deploying cron jobs
gem 'whenever', :require => false
# Regis
gem 'redis'
# Mailchimp
gem 'gibbon'