Commit 9a2d7321 authored by Julius Volz's avatar Julius Volz

Merge pull request #193 from jimmidyson/docs-gemfile

Cross-platform gems for guard watches
parents 2c1b4ae2 a0ac309e
......@@ -4,7 +4,11 @@ gem 'nanoc'
gem 'adsf'
gem 'kramdown'
gem 'guard-nanoc'
gem 'guard-livereload'
gem 'nokogiri'
gem 'redcarpet'
gem 'pygments.rb'
gem 'builder'
gem 'rb-inotify', :require => false
gem 'rb-fsevent', :require => false
gem 'rb-fchange', :require => false
......@@ -10,6 +10,10 @@ GEM
colored (1.2)
cri (2.6.1)
colored (~> 1.2)
em-websocket (0.5.1)
eventmachine (>= 0.12.9)
http_parser.rb (~> 0.6.0)
eventmachine (1.0.8)
ffi (1.9.6)
formatador (0.2.5)
guard (2.6.1)
......@@ -18,10 +22,15 @@ GEM
lumberjack (~> 1.0)
pry (>= 0.9.12)
thor (>= 0.18.1)
guard-livereload (2.3.1)
em-websocket (~> 0.5)
guard (~> 2.0)
multi_json (~> 1.8)
guard-nanoc (1.0.2)
guard (>= 1.8.0)
nanoc (>= 3.6.3)
hitimes (1.2.2)
http_parser.rb (0.6.0)
kramdown (1.4.2)
listen (2.7.11)
celluloid (>= 0.15.2)
......@@ -30,6 +39,7 @@ GEM
lumberjack (1.0.9)
method_source (0.8.2)
mini_portile (0.6.0)
multi_json (1.11.2)
nanoc (3.7.3)
cri (~> 2.3)
nokogiri (1.6.3.1)
......@@ -43,6 +53,8 @@ GEM
posix-spawn (~> 0.3.6)
yajl-ruby (~> 1.1.0)
rack (1.5.2)
rb-fchange (0.0.6)
ffi
rb-fsevent (0.9.4)
rb-inotify (0.9.5)
ffi (>= 0.5.0)
......@@ -59,9 +71,13 @@ PLATFORMS
DEPENDENCIES
adsf
builder
guard-livereload
guard-nanoc
kramdown
nanoc
nokogiri
pygments.rb
rb-fchange
rb-fsevent
rb-inotify
redcarpet
......@@ -6,3 +6,7 @@ guard 'nanoc' do
watch('Rules')
watch(%r{^(content|layouts|lib|static)/.*$})
end
guard 'livereload' do
watch(%r{output/.+})
end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment