forked from fluent/fluentd-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
40 lines (33 loc) · 723 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
source 'https://rubygems.org'
# https://devcenter.heroku.com/articles/ruby-versions
ruby '2.4.1'
gem 'sinatra', '1.4.8'
gem 'sinatra-asset-pipeline', '~> 1.0'
gem 'rdiscount', '~> 2.2.0'
gem 'rest-client', '1.2.0'
gem 'sass'
gem 'haml'
gem 'coderay'
gem 'rack-codehighlighter'
gem 'sanitize'
gem 'jemalloc', '~> 1.0.1'
gem 'minitest'
# Compressor
gem 'yui-compressor', :require => 'yui/compressor'
# Webserver
gem 'unicorn', '~> 5.4.0'
gem 'unicorn-worker-killer', '~> 0.4.4'
# Addons
gem 'newrelic_rpm', '~> 3.18.1'
gem 'airbrake', '~> 3.1.5'
# Dev
group :development do
gem 'rake'
gem 'rack-test'
gem 'shotgun', '~> 0.9'
end
# Production
group :production do
gem 'rack-cache'
gem 'dalli', '~> 2.1.0'
end