-
Notifications
You must be signed in to change notification settings - Fork 43
/
Gemfile
70 lines (57 loc) · 1.11 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
source 'https://rubygems.org'
########
# Core #
########
gem 'rails', '3.2.19'
gem 'omniauth-github', '~> 1.0.1'
gem 'rake', '~> 12.3.3'
gem 'json', '~> 1.7.7'
gem 'figaro'
gem 'nokogiri', '~> 1.16.5'
########
# Data #
########
gem 'pg'
gem 'acts-as-taggable-on'
gem 'faker', :require => false
gem 'carrierwave'
gem 'fog', "~> 1.38.0"
########
# Mail #
########
gem 'delayed_mailhopper'
gem 'delayed_job_active_record'
gem 'daemons', :require => false
################
# Presentation #
################
gem 'haml'
gem 'sass'
gem 'redcarpet', '3.5.1'
gem 'will_paginate', '>= 3.0.5'
gem 'cocoon'
gem 'jquery-rails'
gem 'md_preview'
gem 'md_emoji'
###############
# Maintenance #
###############
gem 'capistrano'
gem 'exception_notification'
gem 'rainbow', :require => false
group :assets do
gem 'sass-rails', '~> 3.2.0'
gem 'coffee-rails', '~> 3.2.0'
gem 'uglifier'
gem 'compass-rails'
end
group 'test' do
gem 'minitest', '~> 4.6.1'
gem 'capybara', '~> 1.1.1'
gem 'factory_girl_rails', '~> 4.1.0'
gem 'turn'
gem 'test_notifier', '~> 1.0.0'
end
group :production do
gem 'therubyracer'
end