Skip to content

Commit

Permalink
Cross-platform gems for guard watches
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmidyson committed Aug 28, 2015
1 parent 109decd commit a0ac309
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
16 changes: 16 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand All @@ -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)
Expand All @@ -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)
Expand All @@ -59,9 +71,13 @@ PLATFORMS
DEPENDENCIES
adsf
builder
guard-livereload
guard-nanoc
kramdown
nanoc
nokogiri
pygments.rb
rb-fchange
rb-fsevent
rb-inotify
redcarpet
4 changes: 4 additions & 0 deletions Guardfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,7 @@ guard 'nanoc' do
watch('Rules')
watch(%r{^(content|layouts|lib|static)/.*$})
end

guard 'livereload' do
watch(%r{output/.+})
end

0 comments on commit a0ac309

Please sign in to comment.