Skip to content

Commit

Permalink
Remove check for some links
Browse files Browse the repository at this point in the history
Links to Tumblr or Wordpress doesnt allow ping.
Check this issue for more information gjtorikian/html-proofer#197.
  • Loading branch information
jcemer committed Apr 20, 2015
1 parent 09efb38 commit 4630f91
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
require "html/proofer"

deploy_dir = "_deploy"

task default: [:watch]
Expand All @@ -10,7 +12,11 @@ end
task :test do
build_sass
build_jekyll
fail unless system("htmlproof _site/")
HTML::Proofer.new("./_site", href_ignore: [
"http://alistapart.com/article/responsive-web-design",
"http://blog.realstuffforabstractpeople.com/post/31753521367/classnames-for-styling-data-attributes-for-behavior",
"https://ajlopez.wordpress.com/2013/05/30/aplicaciones-distribuidas-y-node-js"
]).run
end

task :watch do
Expand Down

0 comments on commit 4630f91

Please sign in to comment.