-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
58 lines (45 loc) · 959 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
46
47
48
49
50
51
52
53
54
55
56
57
58
source 'https://rubygems.org'
gem 'rails', '4.1.0.rc1'
gem 'mysql2'
gem 'activerecord-import'
gem 'json'
gem 'tire', git: "git://github.com/niuage/tire.git"
gem 'kaminari'
gem 'devise'
gem 'simple_form'
gem 'nokogiri'
gem 'draper'
gem 'cocoon'
gem 'bourbon'
gem 'cancan'
gem 'psych'
gem 'whenever', require: false
gem "bugsnag"
gem "protected_attributes"
gem 'httparty'
gem 'redcarpet', git: "https://github.com/vmg/redcarpet"
gem 'make_voteable'
gem 'simple_imgur', require: 'imgur'
gem 'omniauth'
gem "omniauth-facebook"
gem "omniauth-twitter"
gem 'sass-rails'
gem 'coffee-rails'
gem 'sprockets-rails'
gem 'uglifier'
group :development do
gem 'google_drive'
gem 'quiet_assets'
gem 'sqlite3'
end
group :test, :development do
gem "factory_girl_rails"
gem "rspec-rails", "~> 2.0"
gem "steak"
end
gem 'jquery-rails'
# Use unicorn as the app server
gem 'unicorn'
# Deploy with Capistrano
gem 'capistrano'
gem 'rvm-capistrano'