-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
71 lines (51 loc) · 1.21 KB
/
Gemfile
File metadata and controls
71 lines (51 loc) · 1.21 KB
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
71
source 'https://rubygems.org'
ruby '2.1.5'
gem 'rails', '4.1.6'
gem 'unicorn'
gem 'pg'
gem 'redis'
gem 'sidekiq'
gem 'gabba'
gem 'nokogiri'
gem 'turbolinks'
gem 'gon'
gem 'active_model_serializers', git: 'git://github.com/rails-api/active_model_serializers.git', branch: '0-9-stable'
gem 'sass-rails', '~> 4.0.2'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'bcrypt', '~> 3.1.7'
gem 'omniauth-google-oauth2'
gem 'omniauth-github'
gem 'omniauth-facebook'
gem 'omniauth-twitter'
gem 'gibbon'
gem 'mandrill_mailer'
gem 'peek'
gem 'peek-performance_bar'
gem 'peek-pg'
gem 'actionpack-page_caching'
gem 'cancancan', '~> 1.8'
gem 'sprockets-commonjs', github: 'maccman/sprockets-commonjs'
gem 'react-rails', '~> 1.0.0.pre', github: 'reactjs/react-rails'
gem 'therubyracer', :platforms => :ruby
gem 'redcarpet'
gem 'reverse_markdown'
group :production do
gem 'rails_12factor'
end
group :development, :test do
gem 'pry'
gem 'pry-stack_explorer'
gem 'factory_girl_rails', require: false
gem 'rspec-rails'
end
group :test do
gem 'database_cleaner'
gem 'capybara'
gem 'capybara-webkit'
gem 'selenium-webdriver'
gem 'chromedriver-helper'
end
group :test, :development do
gem 'jasmine-rails'
end