-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
36 lines (27 loc) · 832 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
source 'https://rubygems.org'
# Flexible static site generator
gem 'nanoc'
# Fast Markdown converter
gem 'kramdown'
# Syntactically Awesome Style Sheets
gem 'sass'
# Only loads in development environments
group :development, :test do
# A Dead Simple Fileserver (with live-reloading!)
gem 'adsf-live'
# Re-runs commands on filesystem changes
gem 'rerun'
# Used with Nanoc to check for broken or stale links
gem 'nokogiri'
# This brings us true live-reloading with this command:
# bundle exec rerun -xb nanoc | bundle exec nanoc view -L
end
# Only loads in production environments, e.g. Heroku or Travis, or manually set
# via `RACK_ENV=production bundle install`.
group :production do
# A Dead Simple Fileserver
gem 'adsf'
# We here would just run:
# bundle exec nanoc
# bundle exec nanoc view
end