1
0
mirror of https://github.com/strongdm/comply synced 2024-07-03 07:24:22 +00:00
comply/vendor/github.com/urfave/cli
Justin McCarthy 7468711b3b
go.mod: update gitlab dep to v0.30.1
Releases after github.com/xanzy/go-gitlab@v0.31.0 introduce breaking
changes to the NewClient call.

Addresses #94
2020-09-14 11:31:56 -07:00
..
.flake8 Initial commit 2018-05-15 14:13:11 -07:00
.gitignore go.mod: update gitlab dep to v0.30.1 2020-09-14 11:31:56 -07:00
app.go go.mod: update gitlab dep to v0.30.1 2020-09-14 11:31:56 -07:00
appveyor.yml go.mod: update gitlab dep to v0.30.1 2020-09-14 11:31:56 -07:00
category.go go.mod: update gitlab dep to v0.30.1 2020-09-14 11:31:56 -07:00
cli.go go.mod: update gitlab dep to v0.30.1 2020-09-14 11:31:56 -07:00
CODE_OF_CONDUCT.md go.mod: update gitlab dep to v0.30.1 2020-09-14 11:31:56 -07:00
command.go go.mod: update gitlab dep to v0.30.1 2020-09-14 11:31:56 -07:00
context.go go.mod: update gitlab dep to v0.30.1 2020-09-14 11:31:56 -07:00
docs.go go.mod: update gitlab dep to v0.30.1 2020-09-14 11:31:56 -07:00
errors.go Initial commit 2018-05-15 14:13:11 -07:00
fish.go go.mod: update gitlab dep to v0.30.1 2020-09-14 11:31:56 -07:00
flag_bool_t.go go.mod: update gitlab dep to v0.30.1 2020-09-14 11:31:56 -07:00
flag_bool.go go.mod: update gitlab dep to v0.30.1 2020-09-14 11:31:56 -07:00
flag_duration.go go.mod: update gitlab dep to v0.30.1 2020-09-14 11:31:56 -07:00
flag_float64.go go.mod: update gitlab dep to v0.30.1 2020-09-14 11:31:56 -07:00
flag_generic.go go.mod: update gitlab dep to v0.30.1 2020-09-14 11:31:56 -07:00
flag_int_slice.go go.mod: update gitlab dep to v0.30.1 2020-09-14 11:31:56 -07:00
flag_int.go go.mod: update gitlab dep to v0.30.1 2020-09-14 11:31:56 -07:00
flag_int64_slice.go go.mod: update gitlab dep to v0.30.1 2020-09-14 11:31:56 -07:00
flag_int64.go go.mod: update gitlab dep to v0.30.1 2020-09-14 11:31:56 -07:00
flag_string_slice.go go.mod: update gitlab dep to v0.30.1 2020-09-14 11:31:56 -07:00
flag_string.go go.mod: update gitlab dep to v0.30.1 2020-09-14 11:31:56 -07:00
flag_uint.go go.mod: update gitlab dep to v0.30.1 2020-09-14 11:31:56 -07:00
flag_uint64.go go.mod: update gitlab dep to v0.30.1 2020-09-14 11:31:56 -07:00
flag.go go.mod: update gitlab dep to v0.30.1 2020-09-14 11:31:56 -07:00
funcs.go go.mod: update gitlab dep to v0.30.1 2020-09-14 11:31:56 -07:00
go.mod go.mod: update gitlab dep to v0.30.1 2020-09-14 11:31:56 -07:00
go.sum go.mod: update gitlab dep to v0.30.1 2020-09-14 11:31:56 -07:00
help.go go.mod: update gitlab dep to v0.30.1 2020-09-14 11:31:56 -07:00
LICENSE Initial commit 2018-05-15 14:13:11 -07:00
parse.go go.mod: update gitlab dep to v0.30.1 2020-09-14 11:31:56 -07:00
README.md go.mod: update gitlab dep to v0.30.1 2020-09-14 11:31:56 -07:00
sort.go go.mod: update gitlab dep to v0.30.1 2020-09-14 11:31:56 -07:00
template.go go.mod: update gitlab dep to v0.30.1 2020-09-14 11:31:56 -07:00

cli

Build Status Windows Build Status

GoDoc codebeat Go Report Card codecov

cli is a simple, fast, and fun package for building command line apps in Go. The goal is to enable developers to write fast and distributable command line applications in an expressive way.

Usage Documentation

Usage documentation exists for each major version

Installation

Make sure you have a working Go environment. Go version 1.10+ is supported. See the install instructions for Go.

GOPATH

Make sure your PATH includes the $GOPATH/bin directory so your commands can be easily used:

export PATH=$PATH:$GOPATH/bin

Supported platforms

cli is tested against multiple versions of Go on Linux, and against the latest released version of Go on OS X and Windows. For full details, see ./.travis.yml and ./appveyor.yml.

Using v1 releases

$ go get github.com/urfave/cli
...
import (
  "github.com/urfave/cli"
)
...

Using v2 releases

Warning: v2 is in a pre-release state.

$ go get github.com/urfave/cli.v2
...
import (
  "github.com/urfave/cli.v2" // imports as package "cli"
)
...