forked from shipcloud/shipcloud-developer-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
25 lines (23 loc) · 637 Bytes
/
Rakefile
File metadata and controls
25 lines (23 loc) · 637 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
require "html-proofer"
task :build do
puts "Running jekyll buil"
sh "bundle exec jekyll build"
end
task :test do
options = {
assume_extension: true,
internal_domains: [
"developers.shipcloud.io"
],
typhoeus: {
ssl_verifypeer: false
},
url_ignore: [
"https://requestb.in",
"https://www.ups.com/media/de/service_guide_de_preview.pdf",
"https://www.dhl.de/en/paket/information/geschaeftskunden/service-wunschzeit.html",
"https://us7.campaign-archive.com/home/?u=61172dea8790607c71d26bb86&id=4319f24b6f",
]
}
HTMLProofer.check_directory("./_site", options).run
end