-
Notifications
You must be signed in to change notification settings - Fork 92
/
Gemfile
83 lines (64 loc) · 1.39 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
71
72
73
74
75
76
77
78
79
80
81
82
83
source 'https://rubygems.org'
ruby '2.4.10'
gem 'rails', '~> 5.1'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '>= 3.2'
gem 'therubyracer'
gem 'uglifier', '>= 1.0.3'
# Upload assets to AWS S3
gem 'asset_sync'
gem 'fog-aws'
end
gem 'bootstrap-sass', '~> 3.3.6'
gem 'bootstrap-social-rails'
gem 'bootstrap_form'
gem 'jquery-rails'
gem 'http_accept_language'
# Mongo
gem 'mongoid'
# Omniauth
gem 'omniauth'
gem 'omniauth-twitter'
# Fix authentication using query params deprecation
# See https://github.com/omniauth/omniauth-github/pull/84
gem 'omniauth-github', '>= 1.4'
# Puma
gem 'puma'
# New Relic
gem 'newrelic_rpm'
# Memcached
gem 'dalli'
gem 'memcachier'
# Pagination
gem 'kaminari', '~> 1.0'
gem 'kaminari-mongoid', '~> 1.0'
# Notify exceptions
gem 'exception_notification'
# Static pages
gem 'high_voltage'
gem 'rdiscount', '~> 2.2.0.2'
# Async tasks
gem 'sucker_punch', '~> 2.0'
gem 'octokit'
gem 'twitter'
group :production do
gem 'rails_12factor'
end
group :test do
gem 'coveralls', require: false
gem 'minitest-reporters'
gem 'mocha', require: false
gem 'simplecov', require: false
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
end
group :development, :test do
gem 'byebug'
gem 'pry'
gem 'rubocop', '~> 0.51.0', require: false
gem 'test-unit', '~> 3.0'
end