2013-10-23 00:07:51 -07:00
|
|
|
require "html/proofer"
|
|
|
|
|
|
|
|
task :test do
|
|
|
|
sh "bundle exec jekyll build"
|
2013-10-23 00:20:44 -07:00
|
|
|
# ignore href="#" for the "Copy to clipboard" button
|
|
|
|
HTML::Proofer.new("./_site", :href_ignore => ["#"]).run
|
2013-10-23 00:07:51 -07:00
|
|
|
end
|