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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +23 -0
  3. data/bin/brew-go +13 -0
  4. data/brew-go.gemspec +1 -1
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e65c3786169c7c491730f764c06b76aed9dc5d55
4
- data.tar.gz: 312e737e5215baad1e8492b28b51db6b9e6dabe3
3
+ metadata.gz: ae70f8f79922208dbc86857daec54c61a1d27551
4
+ data.tar.gz: 0f5ee7c823a88773d252645ba526d83ec766afaa
5
5
  SHA512:
6
- metadata.gz: 6d7141000b326d49297560566ac07b61a09c2a2f02fad1fbab04c6ab34aa2b72524766849b07dae5b38b8b270f57c97f550e7bd02dcd4d1e28a031c26e6abbbb
7
- data.tar.gz: 918359870a72a4c64e54aff825a935653c085ed5e30034ea0c71c78f6289efb8e08f2ae027f7d8aa0c704bb211e785f739e43e3a0a16ab3f0aae0995f5660e6c
6
+ metadata.gz: e996355484c3c739a30fb52d335a006d3a5edd7942bae877aeedc8f973961c770c63955ea8dfb7ac72af6067408e0e0257d751b697427486fd4b4d956cc0d2c9
7
+ data.tar.gz: 88843ca0a4ba8daf0ba53745d95445abdb09ee702febbc3b11081558bf67b8a4359b74b257a502604de696b56a58f3636da40f1ba1088d0b3a30063b0aaf7424
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # brew-go
2
2
 
3
+ [![Gem version](https://img.shields.io/gem/v/brew-go.svg)](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
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "brew-go"
7
- spec.version = "1.0.1"
7
+ spec.version = "1.1.0"
8
8
  spec.authors = ["Marco Hinz"]
9
9
  spec.email = ["mh.codebro@gmail.com"]
10
10
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: brew-go
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marco Hinz