forked from github/government.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
15 lines (14 loc) · 913 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'html/proofer'
task :test do
sh "bundle exec jekyll build"
tester = HTML::Proofer.new "./_site/", :href_ignore => [
"http://prose.io#/github/government.github.com/edit/gh-pages/_posts/2013-09-17-design-a-street-with-streetmix.md",
"http://prose.io#/github/government.github.com/edit/gh-pages/_posts/2013-10-06-forking-your-city.md",
"http://prose.io#/github/government.github.com/edit/gh-pages/_posts/2013-09-26-philadelphia-gets-going-and-gets-open.md",
"http://prose.io#/github/government.github.com/edit/gh-pages/_posts/2013-09-03-project-open-data.md",
"http://prose.io#/github/government.github.com/edit/gh-pages/_posts/2013-10-01-modern-approach-to-open-data.md",
"http://prose.io#/github/government.github.com/edit/gh-pages/_posts/2013-10-14-canadian-web-experience-toolkit.md",
"http://prose.io#github/government.github.com/new/master/_posts"
]
tester.run
end