-
Notifications
You must be signed in to change notification settings - Fork 15
/
Gemfile
57 lines (50 loc) · 1.25 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
source 'https://rubygems.org'
gem 'rails', '5.0.1'
gem 'pg'
gem 'unicorn'
gem 'settingslogic'
gem 'newrelic_rpm'
gem 'devise', '~> 4.2.0'
gem 'omniauth', '~> 1.6.1'
gem 'omniauth-github'
gem 'omniauth-twitter'
gem 'simple_form', '~> 3.4.0'
gem 'dotenv-rails'
gem 'modernizr-rails'
gem 'sprockets-rails', '~> 3.2.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 1.0.1'
gem 'bourbon'
gem 'neat', '~> 1.8.0'
gem 'haml-rails'
gem 'rails_html_helpers'
gem 'draper', '~> 3.0.0.pre1'
gem 'cancan'
gem 'redcarpet'
gem 'sass-rails', '~> 5.0.6'
gem 'coffee-rails', '~> 4.2.1'
gem 'uglifier', '>= 1.0.3'
gem 'activemodel-serializers-xml'
group :development do
gem 'foreman'
gem 'better_errors'
gem 'binding_of_caller'
end
group :test, :development do
gem 'rspec-rails', '~> 3.3'
gem 'factory_girl_rails','~> 4.2'
end
group :test do
gem 'rails-controller-testing'
gem 'rspec-its'
gem 'rspec-activemodel-mocks'
gem 'simplecov', require: false
gem 'capybara', '~> 2.1'
gem 'accept_values_for'
gem 'json_spec'
end
group :production, :staging do
gem 'exception_notification', '~> 4.0.1'
gem 'rack-robotz', '~> 0.0.3'
end