Add guard-nanoc · rubythonode/developer.github.com@3364861 · GitHub
Skip to content

Commit 3364861

Browse files
committed
Add guard-nanoc
1 parent 1529a7b commit 3364861

4 files changed

Lines changed: 40 additions & 5 deletions

File tree

Gemfile

Lines changed: 1 addition & 0 deletions

Gemfile.lock

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ GEM
44
adsf (1.2.0)
55
rack (>= 1.0.0)
66
builder (3.2.2)
7+
celluloid (0.15.2)
8+
timers (~> 1.1.0)
79
coderay (1.1.0)
810
colored (1.2)
911
cri (2.6.1)
@@ -13,28 +15,54 @@ GEM
1315
ffi (>= 1.3.0)
1416
eventmachine (1.0.3)
1517
ffi (1.9.3)
18+
formatador (0.2.5)
1619
fssm (0.2.10)
20+
guard (2.6.1)
21+
formatador (>= 0.2.4)
22+
listen (~> 2.7)
23+
lumberjack (~> 1.0)
24+
pry (>= 0.9.12)
25+
thor (>= 0.18.1)
26+
guard-nanoc (1.0.2)
27+
guard (>= 1.8.0)
28+
nanoc (>= 3.6.3)
1729
html-proofer (0.6.8)
1830
colored (~> 1.2)
1931
mercenary (~> 0.3.2)
2032
nokogiri (~> 1.6.0)
2133
typhoeus (~> 0.6.7)
2234
yell (~> 2.0)
2335
kramdown (0.13.8)
36+
listen (2.7.9)
37+
celluloid (>= 0.15.2)
38+
rb-fsevent (>= 0.9.3)
39+
rb-inotify (>= 0.9)
40+
lumberjack (1.0.9)
2441
mercenary (0.3.3)
42+
method_source (0.8.2)
2543
mime-types (1.25.1)
2644
mini_portile (0.6.0)
2745
nanoc (3.7.0)
2846
cri (~> 2.3)
2947
nokogiri (1.6.2.1)
3048
mini_portile (= 0.6.0)
49+
pry (0.10.0)
50+
coderay (~> 1.1.0)
51+
method_source (~> 0.8.1)
52+
slop (~> 3.4)
3153
rack (1.5.2)
3254
rake (0.9.6)
55+
rb-fsevent (0.9.4)
56+
rb-inotify (0.9.5)
57+
ffi (>= 0.5.0)
3358
rouge (1.4.0)
59+
slop (3.6.0)
3460
thin (1.6.2)
3561
daemons (>= 1.0.9)
3662
eventmachine (>= 1.0.0)
3763
rack (>= 1.0.0)
64+
thor (0.19.1)
65+
timers (1.1.0)
3866
typhoeus (0.6.8)
3967
ethon (>= 0.7.0)
4068
yajl-ruby (0.8.3)
@@ -48,6 +76,7 @@ DEPENDENCIES
4876
builder
4977
coderay
5078
fssm
79+
guard-nanoc
5180
html-proofer (~> 0.6.1)
5281
kramdown (~> 0.13.2)
5382
mime-types (~> 1.16)

Guardfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# A sample Guardfile
2+
# More info at https://github.com/guard/guard#readme
3+
4+
guard 'nanoc' do
5+
watch('nanoc.yaml') # Change this to config.yaml if you use the old config file name
6+
watch('Rules')
7+
watch(%r{^(content|layouts|lib|static)/.*$})
8+
end

script/server

Lines changed: 2 additions & 5 deletions

0 commit comments

Comments
 (0)