From cccb6093e0089d2d15597653cf51ca58d05f113a Mon Sep 17 00:00:00 2001 From: Thibaut Courouble Date: Sun, 15 May 2016 08:57:15 -0400 Subject: [PATCH] Update npm documentation (3.9.0) --- lib/docs/scrapers/npm.rb | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/docs/scrapers/npm.rb b/lib/docs/scrapers/npm.rb index 223916d9..6628e3c6 100644 --- a/lib/docs/scrapers/npm.rb +++ b/lib/docs/scrapers/npm.rb @@ -2,7 +2,7 @@ module Docs class Npm < UrlScraper self.name = 'npm' self.type = 'npm' - self.release = '3.8.5' + self.release = '3.9.0' self.base_url = 'https://docs.npmjs.com/' self.links = { home: 'https://www.npmjs.com/', @@ -27,5 +27,11 @@ module Docs Licensed under the npm License.
npm is a trademark of npm, Inc. HTML + + private + + def request_options + super.merge accept_encoding: 'gzip' + end end end