forked from philtr/jackson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
44 lines (36 loc) · 901 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
source 'https://rubygems.org'
ruby "2.1.0"
gem 'dotenv-rails', '~> 0.9.0'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.0.2'
gem 'pg'
gem 'omniauth', '~> 1.2.1'
gem 'omniauth-facebook', '~> 1.6.0'
gem 'omniauth-github', '~> 1.1.1'
gem 'omniauth-gplus', '~> 1.2.0'
gem 'omniauth-twitter', '~> 1.0.1'
gem 'coffee-rails', '~> 4.0.1'
gem 'haml', '~> 4.0.5'
gem 'jbuilder', '~> 2.0'
gem 'jquery-rails'
gem 'maruku'
gem 'nokogiri'
gem 'postmark-rails'
gem 'premailer-rails'
gem 'sass-rails', '~> 4.0.1'
gem 'uglifier', '>= 2.4.0'
gem 'unicorn'
group :development, :test do
gem 'coveralls', require: false
gem 'shoulda-context'
gem 'shoulda-matchers'
gem 'mailcatcher', github: "sj26/mailcatcher"
gem 'factory_girl_rails'
gem 'mocha', require: false
gem 'pry-rails'
gem 'turn'
end
group :production do
gem 'rails_12factor'
gem 'sentry-raven'
end