-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
38 lines (33 loc) · 796 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
source 'https://rubygems.org'
gem 'rails', '3.2.1'
group :development do
gem 'sqlite3'
end
group :production do
gem 'pg'
gem 'thin'
end
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
gem 'meta_search', '>= 1.1.0.pre'
gem 'font-awesome-sass-rails'
end
gem 'jquery-rails'
gem 'activeadmin'
gem 'heroku'
gem 'devise'
gem 'omniauth-facebook'
gem 'omniauth-twitter'
gem 'faker'
gem 'ancestry'
gem 'kaminari'
gem 'stripe'
gem 'carmen'
gem 'cancan'
gem 'rufus-scheduler'
gem 'delayed_job_active_record'
gem 'inboxes', :git => 'git://github.com/jabreu52/inboxes.git'
gem 'activerecord-reputation-system', :git => 'git://github.com/jabreu52/activerecord-reputation-system.git', :require => 'reputation_system'
gem 'auto_html'