-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
38 lines (29 loc) · 746 Bytes
/
Gemfile
File metadata and controls
38 lines (29 loc) · 746 Bytes
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
source "http://rubygems.org"
ruby '2.2.2'
# Thin to serve content from Heroku
gem 'thin'
gem 'rack'
gem 'rack-rewrite', require: 'rack-rewrite'
gem 'rack-contrib', require: 'rack/contrib'
# Mime-types for handling mime types
gem 'mime-types', require: 'mime/types'
gem 'rake', '~> 10.4'
gem 'compass'
group :development do
# Nanoc for compiling dynamic code
gem 'nanoc', '~> 3.8'
gem "guard-nanoc"
# Kramdown for markdown syntax
gem 'kramdown'
gem 'nokogiri', '~> 1.6'
# HAML / SASS syntax
gem "haml"
gem "sass"
# Compressing and minifying
gem "rainpress"
gem "uglifier"
# Could not find the required 'adsf' gem, which is necessary for the view command.
gem 'adsf'
# needed for nanoc watch
gem 'fssm'
end