├── .bra.toml ├── .gitignore ├── .gopmfile ├── .travis.yml ├── LICENSE ├── README.md ├── cmd ├── bin.go ├── build.go ├── clean.go ├── cmd.go ├── config.go ├── exec.go ├── gen.go ├── get.go ├── helper.go ├── helper_windows.go ├── install.go ├── list.go ├── run.go ├── test.go └── update.go ├── gopm.go ├── lib └── lib.go └── modules ├── base ├── base.go └── tool.go ├── cae ├── cae.go └── zip │ ├── read.go │ ├── stream.go │ ├── write.go │ └── zip.go ├── cli ├── app.go ├── cli.go ├── command.go ├── context.go ├── flag.go └── help.go ├── doc ├── http.go ├── struct.go └── utils.go ├── errors └── errors.go ├── goconfig ├── conf.go ├── read.go └── write.go ├── log └── log.go └── setting └── setting.go /.bra.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/.bra.toml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/.gitignore -------------------------------------------------------------------------------- /.gopmfile: -------------------------------------------------------------------------------- 1 | [target] 2 | path = github.com/gpmgo/gopm 3 | 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/README.md -------------------------------------------------------------------------------- /cmd/bin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/cmd/bin.go -------------------------------------------------------------------------------- /cmd/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/cmd/build.go -------------------------------------------------------------------------------- /cmd/clean.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/cmd/clean.go -------------------------------------------------------------------------------- /cmd/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/cmd/cmd.go -------------------------------------------------------------------------------- /cmd/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/cmd/config.go -------------------------------------------------------------------------------- /cmd/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/cmd/exec.go -------------------------------------------------------------------------------- /cmd/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/cmd/gen.go -------------------------------------------------------------------------------- /cmd/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/cmd/get.go -------------------------------------------------------------------------------- /cmd/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/cmd/helper.go -------------------------------------------------------------------------------- /cmd/helper_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/cmd/helper_windows.go -------------------------------------------------------------------------------- /cmd/install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/cmd/install.go -------------------------------------------------------------------------------- /cmd/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/cmd/list.go -------------------------------------------------------------------------------- /cmd/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/cmd/run.go -------------------------------------------------------------------------------- /cmd/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/cmd/test.go -------------------------------------------------------------------------------- /cmd/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/cmd/update.go -------------------------------------------------------------------------------- /gopm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/gopm.go -------------------------------------------------------------------------------- /lib/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/lib/lib.go -------------------------------------------------------------------------------- /modules/base/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/modules/base/base.go -------------------------------------------------------------------------------- /modules/base/tool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/modules/base/tool.go -------------------------------------------------------------------------------- /modules/cae/cae.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/modules/cae/cae.go -------------------------------------------------------------------------------- /modules/cae/zip/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/modules/cae/zip/read.go -------------------------------------------------------------------------------- /modules/cae/zip/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/modules/cae/zip/stream.go -------------------------------------------------------------------------------- /modules/cae/zip/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/modules/cae/zip/write.go -------------------------------------------------------------------------------- /modules/cae/zip/zip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/modules/cae/zip/zip.go -------------------------------------------------------------------------------- /modules/cli/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/modules/cli/app.go -------------------------------------------------------------------------------- /modules/cli/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/modules/cli/cli.go -------------------------------------------------------------------------------- /modules/cli/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/modules/cli/command.go -------------------------------------------------------------------------------- /modules/cli/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/modules/cli/context.go -------------------------------------------------------------------------------- /modules/cli/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/modules/cli/flag.go -------------------------------------------------------------------------------- /modules/cli/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/modules/cli/help.go -------------------------------------------------------------------------------- /modules/doc/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/modules/doc/http.go -------------------------------------------------------------------------------- /modules/doc/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/modules/doc/struct.go -------------------------------------------------------------------------------- /modules/doc/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/modules/doc/utils.go -------------------------------------------------------------------------------- /modules/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/modules/errors/errors.go -------------------------------------------------------------------------------- /modules/goconfig/conf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/modules/goconfig/conf.go -------------------------------------------------------------------------------- /modules/goconfig/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/modules/goconfig/read.go -------------------------------------------------------------------------------- /modules/goconfig/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/modules/goconfig/write.go -------------------------------------------------------------------------------- /modules/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/modules/log/log.go -------------------------------------------------------------------------------- /modules/setting/setting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpmgo/gopm/HEAD/modules/setting/setting.go --------------------------------------------------------------------------------