File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ gem 'yajl-ruby', '~> 0.8.2'
1616group :development do
1717 gem 'adsf'
1818 gem 'fssm'
19+ gem 'guard-nanoc'
1920end
2021
2122group :test do
Original file line number Diff line number Diff line change 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 )
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 )
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 11#! /bin/sh
22
3- script/bootstrap
4-
5- bundle exec nanoc autocompile -p 3002 -H thin
6-
7-
3+ echo " Don't forget to run ` bundle exec guard` "
4+ bundle exec nanoc view -H thin
You can’t perform that action at this time.
0 commit comments