brew-go 1.0.1 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +23 -0
- data/bin/brew-go +13 -0
- data/brew-go.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ae70f8f79922208dbc86857daec54c61a1d27551
|
4
|
+
data.tar.gz: 0f5ee7c823a88773d252645ba526d83ec766afaa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e996355484c3c739a30fb52d335a006d3a5edd7942bae877aeedc8f973961c770c63955ea8dfb7ac72af6067408e0e0257d751b697427486fd4b4d956cc0d2c9
|
7
|
+
data.tar.gz: 88843ca0a4ba8daf0ba53745d95445abdb09ee702febbc3b11081558bf67b8a4359b74b257a502604de696b56a58f3636da40f1ba1088d0b3a30063b0aaf7424
|
data/README.md
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
# brew-go
|
2
2
|
|
3
|
+
[](https://rubygems.org/gems/brew-go)
|
4
|
+
|
3
5
|
Manage Go tools via Homebrew. Don't clutter your `$GOPATH` anymore.
|
4
6
|
|
5
7
|
Internally brew-go still relies on `go get`, but puts things into
|
@@ -42,3 +44,24 @@ Example:
|
|
42
44
|
|
43
45
|
$ brew uninstall brew-go-benchstat
|
44
46
|
Uninstalling /usr/local/Cellar/brew-go-benchstat/golang.org#x#perf#cmd#benchstat... (3.6MB)
|
47
|
+
|
48
|
+
$ brew go common
|
49
|
+
Here are a few commonly used tools. The names can be used as shortcuts:
|
50
|
+
$ brew go get guru
|
51
|
+
|
52
|
+
benchstat (golang.org/x/perf/cmd/benchstat)
|
53
|
+
dlv (github.com/derekparker/delve/cmd/dlv)
|
54
|
+
errcheck (github.com/kisielk/errcheck)
|
55
|
+
fillstruct (github.com/davidrjenni/reftools/cmd/fillstruct)
|
56
|
+
gocode (github.com/nsf/gocode)
|
57
|
+
godef (github.com/rogpeppe/godef)
|
58
|
+
goimports (golang.org/x/tools/cmd/goimports)
|
59
|
+
golint (github.com/golang/lint/golint)
|
60
|
+
gometalinter (github.com/alecthomas/gometalinter)
|
61
|
+
gorename (golang.org/x/tools/cmd/gorename)
|
62
|
+
gotags (github.com/jstemmer/gotags)
|
63
|
+
guru (golang.org/x/tools/cmd/guru)
|
64
|
+
impl (github.com/josharian/impl)
|
65
|
+
interfacer (mvdan.cc/interfacer)
|
66
|
+
staticcheck (honnef.co/go/tools/cmd/staticcheck)
|
67
|
+
unused (honnef.co/go/tools/cmd/unused)
|
data/bin/brew-go
CHANGED
@@ -10,7 +10,20 @@ end
|
|
10
10
|
@commons = {
|
11
11
|
"benchstat" => "golang.org/x/perf/cmd/benchstat",
|
12
12
|
"dlv" => "github.com/derekparker/delve/cmd/dlv",
|
13
|
+
"errcheck" => "github.com/kisielk/errcheck",
|
14
|
+
"fillstruct" => "github.com/davidrjenni/reftools/cmd/fillstruct",
|
15
|
+
"gocode" => "github.com/nsf/gocode",
|
16
|
+
"godef" => "github.com/rogpeppe/godef",
|
17
|
+
"goimports" => "golang.org/x/tools/cmd/goimports",
|
18
|
+
"golint" => "github.com/golang/lint/golint",
|
19
|
+
"gometalinter" => "github.com/alecthomas/gometalinter",
|
20
|
+
"gorename" => "golang.org/x/tools/cmd/gorename",
|
21
|
+
"gotags" => "github.com/jstemmer/gotags",
|
13
22
|
"guru" => "golang.org/x/tools/cmd/guru",
|
23
|
+
"impl" => "github.com/josharian/impl",
|
24
|
+
"interfacer" => "mvdan.cc/interfacer",
|
25
|
+
"staticcheck" => "honnef.co/go/tools/cmd/staticcheck",
|
26
|
+
"unused" => "honnef.co/go/tools/cmd/unused",
|
14
27
|
}
|
15
28
|
|
16
29
|
def helpme
|
data/brew-go.gemspec
CHANGED