This commit is contained in:
Reverend Steven Milanese 2021-02-18 16:23:23 -05:00
parent 86bb159d44
commit 1a2fed19b0
59 changed files with 6691 additions and 11 deletions

7
Rakefile Normal file
View file

@ -0,0 +1,7 @@
require 'html-proofer'
task :test do
sh "bundle exec jekyll build"
options = { :assume_extension => true, :only_4xx => true, :allow_hash_href => true}
HTMLProofer.check_directory("./_site", options).run
end