From 630d326396169cac9cecdc971e31a9abea0c5e94 Mon Sep 17 00:00:00 2001 From: Thibaut Courouble Date: Sun, 6 Mar 2016 17:31:11 -0500 Subject: [PATCH] Update Rust documentation (1.7.0) --- lib/docs/scrapers/rust.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/docs/scrapers/rust.rb b/lib/docs/scrapers/rust.rb index 4208cdef..1fc27c33 100644 --- a/lib/docs/scrapers/rust.rb +++ b/lib/docs/scrapers/rust.rb @@ -1,15 +1,15 @@ module Docs class Rust < UrlScraper self.type = 'rust' - self.release = '1.6.0' - self.base_url = 'http://doc.rust-lang.org/' + self.release = '1.7.0' + self.base_url = 'https://doc.rust-lang.org/' self.root_path = 'book/index.html' self.initial_paths = %w( reference.html collections/index.html std/index.html) self.links = { - home: 'http://www.rust-lang.org/', + home: 'https://www.rust-lang.org/', code: 'https://github.com/rust-lang/rust' }