Parcourir la source

Update Go documentation (1.18.0)

Simon Legner il y a 3 ans
Parent
commit
d453c3ea98
1 fichiers modifiés avec 5 ajouts et 4 suppressions
  1. 5 4
      lib/docs/scrapers/go.rb

+ 5 - 4
lib/docs/scrapers/go.rb

@@ -1,7 +1,7 @@
 module Docs
   class Go < UrlScraper
     self.type = 'go'
-    self.release = '1.17.5'
+    self.release = '1.18.0'
     self.base_url = 'https://golang.org/pkg/'
     self.links = {
       home: 'https://golang.org/',
@@ -10,9 +10,10 @@ module Docs
 
     # Run godoc locally, since https://golang.org/pkg/ redirects to https://pkg.go.dev/std with rate limiting / scraping protection.
 
-    # curl -LO https://golang.org/dl/go1.17.5.windows-amd64.zip
-    # go install golang.org/x/tools/cmd/godoc@latest
-    # go/bin/godoc -zip=go1.17.5.windows-amd64.zip -goroot=/go
+    # docker run --expose=6060 --rm -it docker.io/golang:1.18.0
+    #docker# go install golang.org/x/tools/cmd/godoc@latest
+    #docker# rm -r /usr/local/go/test/
+    #docker# godoc -http 0.0.0.0:6060 -v
     self.base_url = 'http://localhost:6060/pkg/'
 
     html_filters.push 'clean_local_urls'