Skip to content

Commit a672413

Browse files
committed
Update Go documentation (1.24.0)
1 parent e50a042 commit a672413

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

lib/docs/scrapers/go.rb

+11-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module Docs
22
class Go < UrlScraper
33
self.type = 'go'
4-
self.release = '1.23.0'
4+
self.release = '1.24.0'
55
self.base_url = 'https://golang.org/pkg/'
66
self.links = {
77
home: 'https://golang.org/',
@@ -10,10 +10,19 @@ class Go < UrlScraper
1010

1111
# Run godoc locally, since https://golang.org/pkg/ redirects to https://pkg.go.dev/std with rate limiting / scraping protection.
1212

13-
# podman run --net host --rm -it docker.io/golang:1.23.0
13+
# podman run --net host --rm -it docker.io/golang:1.24.0
1414
#podman# go install golang.org/x/tools/cmd/godoc@latest
1515
#podman# rm -r /usr/local/go/test/
1616
#podman# godoc -http 0.0.0.0:6060 -v
17+
18+
# or using alpine
19+
# podman run --net host --rm -it alpine:latest
20+
#podman# apk add curl
21+
#podman# curl -LO https://go.dev/dl/go1.24.0.linux-amd64.tar.gz
22+
#podman# tar xf go1.24.0.linux-amd64.tar.gz
23+
#podman# go/bin/go install golang.org/x/tools/cmd/godoc@latest
24+
#podman# /root/go/bin/godoc -http 0.0.0.0:6060 -v
25+
1726
self.base_url = 'http://localhost:6060/pkg/'
1827

1928
html_filters.push 'clean_local_urls'

0 commit comments

Comments
 (0)