From 1fa81b8461e84ef2b8de6167071a1216f07b87c0 Mon Sep 17 00:00:00 2001 From: Thibaut Date: Sat, 13 Dec 2014 15:33:06 -0500 Subject: [PATCH] Silence Nokogiri warnings --- lib/docs/core/scraper.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/docs/core/scraper.rb b/lib/docs/core/scraper.rb index a8d3955a..a5323414 100644 --- a/lib/docs/core/scraper.rb +++ b/lib/docs/core/scraper.rb @@ -137,7 +137,8 @@ module Docs end def process_response(response) - pipeline.call parse(response.body), pipeline_context(response), data = {} + data = {} + quietly { pipeline.call(parse(response.body), pipeline_context(response), data) } data end