File tree 3 files changed +24
-0
lines changed 3 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,11 @@ gem 'nanoc'
4
4
gem 'adsf'
5
5
gem 'kramdown'
6
6
gem 'guard-nanoc'
7
+ gem 'guard-livereload'
7
8
gem 'nokogiri'
8
9
gem 'redcarpet'
9
10
gem 'pygments.rb'
10
11
gem 'builder'
12
+ gem 'rb-inotify' , :require => false
13
+ gem 'rb-fsevent' , :require => false
14
+ gem 'rb-fchange' , :require => false
Original file line number Diff line number Diff line change 10
10
colored (1.2 )
11
11
cri (2.6.1 )
12
12
colored (~> 1.2 )
13
+ em-websocket (0.5.1 )
14
+ eventmachine (>= 0.12.9 )
15
+ http_parser.rb (~> 0.6.0 )
16
+ eventmachine (1.0.8 )
13
17
ffi (1.9.6 )
14
18
formatador (0.2.5 )
15
19
guard (2.6.1 )
18
22
lumberjack (~> 1.0 )
19
23
pry (>= 0.9.12 )
20
24
thor (>= 0.18.1 )
25
+ guard-livereload (2.3.1 )
26
+ em-websocket (~> 0.5 )
27
+ guard (~> 2.0 )
28
+ multi_json (~> 1.8 )
21
29
guard-nanoc (1.0.2 )
22
30
guard (>= 1.8.0 )
23
31
nanoc (>= 3.6.3 )
24
32
hitimes (1.2.2 )
33
+ http_parser.rb (0.6.0 )
25
34
kramdown (1.4.2 )
26
35
listen (2.7.11 )
27
36
celluloid (>= 0.15.2 )
30
39
lumberjack (1.0.9 )
31
40
method_source (0.8.2 )
32
41
mini_portile (0.6.0 )
42
+ multi_json (1.11.2 )
33
43
nanoc (3.7.3 )
34
44
cri (~> 2.3 )
35
45
nokogiri (1.6.3.1 )
43
53
posix-spawn (~> 0.3.6 )
44
54
yajl-ruby (~> 1.1.0 )
45
55
rack (1.5.2 )
56
+ rb-fchange (0.0.6 )
57
+ ffi
46
58
rb-fsevent (0.9.4 )
47
59
rb-inotify (0.9.5 )
48
60
ffi (>= 0.5.0 )
@@ -59,9 +71,13 @@ PLATFORMS
59
71
DEPENDENCIES
60
72
adsf
61
73
builder
74
+ guard-livereload
62
75
guard-nanoc
63
76
kramdown
64
77
nanoc
65
78
nokogiri
66
79
pygments.rb
80
+ rb-fchange
81
+ rb-fsevent
82
+ rb-inotify
67
83
redcarpet
Original file line number Diff line number Diff line change @@ -6,3 +6,7 @@ guard 'nanoc' do
6
6
watch ( 'Rules' )
7
7
watch ( %r{^(content|layouts|lib|static)/.*$} )
8
8
end
9
+
10
+ guard 'livereload' do
11
+ watch ( %r{output/.+} )
12
+ end
You can’t perform that action at this time.
0 commit comments