-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGemfile
56 lines (50 loc) · 979 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
source 'http://rubygems.org'
ruby '2.1.2'
gem 'rails', '4.2.10'
gem 'pg'
gem 'haml-rails'
gem 'hpricot'
gem 'goodreads'
gem 'oauth'
gem 'dynamic_form'
gem 'sinatra'
gem 'sidekiq'
gem 'slim'
gem 'will_paginate'
gem 'newrelic_rpm'
gem 'airbrake'
gem 'json'
gem 'poltergeist'
gem 'capybara-screenshot'
gem 'active_hash'
gem 'sentry-raven'
gem 'twitter-bootstrap-rails', :git => 'git://github.com/seyhunak/twitter-bootstrap-rails.git', branch: 'bootstrap3'
gem 'jquery-rails'
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
gem 'puma'
gem 'angularjs-rails'
gem 'active_model_serializers'
gem 'awesome_print'
gem 'pusher'
gem 'httparty'
group :test do
gem 'rspec-rails'
gem 'rspec-mocks'
gem 'hashie'
gem 'factory_girl_rails'
gem 'webmock'
gem 'database_cleaner'
gem 'vcr'
gem 'connection_pool'
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
end
group :development, :test do
gem 'byebug'
gem 'dotenv-rails'
gem 'teaspoon'
end