From 26b025659239e6c6ab21722ea7ef22a783e078da Mon Sep 17 00:00:00 2001 From: Arnaud Valle Date: Wed, 9 Oct 2019 21:50:17 +0200 Subject: [PATCH 1/2] docs: update ruby version requirement --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e8a13fdd..12b2e15c 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Unless you wish to contribute to the project, we recommend using the hosted vers DevDocs is made of two pieces: a Ruby scraper that generates the documentation and metadata, and a JavaScript app powered by a small Sinatra app. -DevDocs requires Ruby 2.6.0, libcurl, and a JavaScript runtime supported by [ExecJS](https://github.com/rails/execjs#readme) (included in OS X and Windows; [Node.js](https://nodejs.org/en/) on Linux). Once you have these installed, run the following commands: +DevDocs requires Ruby 2.6.3, libcurl, and a JavaScript runtime supported by [ExecJS](https://github.com/rails/execjs#readme) (included in OS X and Windows; [Node.js](https://nodejs.org/en/) on Linux). Once you have these installed, run the following commands: ``` git clone https://github.com/freeCodeCamp/devdocs.git && cd devdocs From 6927db37d77bd7beae487d749817d36311182f39 Mon Sep 17 00:00:00 2001 From: Arnaud Valle Date: Wed, 9 Oct 2019 21:58:14 +0200 Subject: [PATCH 2/2] feat: update puppeteer to 1.20.0 --- lib/docs/scrapers/puppeteer.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/docs/scrapers/puppeteer.rb b/lib/docs/scrapers/puppeteer.rb index 3b037311..5b64330c 100644 --- a/lib/docs/scrapers/puppeteer.rb +++ b/lib/docs/scrapers/puppeteer.rb @@ -1,7 +1,7 @@ module Docs class Puppeteer < Github - self.release = '1.19.0' - self.base_url = 'https://github.com/GoogleChrome/puppeteer/blob/v1.19.0/docs/api.md' + self.release = '1.20.0' + self.base_url = 'https://github.com/GoogleChrome/puppeteer/blob/v1.20.0/docs/api.md' self.links = { code: 'https://github.com/GoogleChrome/puppeteer' }