1
0
mirror of https://github.com/github/choosealicense.com synced 2024-12-21 20:30:10 +01:00
2013-10-23 00:20:44 -07:00

8 lines
187 B
Ruby

require "html/proofer"
task :test do
sh "bundle exec jekyll build"
# ignore href="#" for the "Copy to clipboard" button
HTML::Proofer.new("./_site", :href_ignore => ["#"]).run
end