├── .gitignore ├── .travis.yml ├── Dockerfile ├── Godeps ├── Godeps.json ├── Readme └── _workspace │ ├── .gitignore │ └── src │ ├── github.com │ ├── codegangsta │ │ └── cli │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── app.go │ │ │ ├── app_test.go │ │ │ ├── autocomplete │ │ │ ├── bash_autocomplete │ │ │ └── zsh_autocomplete │ │ │ ├── cli.go │ │ │ ├── cli_test.go │ │ │ ├── command.go │ │ │ ├── command_test.go │ │ │ ├── context.go │ │ │ ├── context_test.go │ │ │ ├── flag.go │ │ │ ├── flag_test.go │ │ │ ├── help.go │ │ │ └── helpers_test.go │ ├── fatih │ │ └── color │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── color.go │ │ │ ├── color_test.go │ │ │ └── doc.go │ ├── mitchellh │ │ └── go-homedir │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── homedir.go │ │ │ └── homedir_test.go │ └── shiena │ │ └── ansicolor │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ansicolor.go │ │ ├── ansicolor │ │ └── main.go │ │ ├── ansicolor_ansi.go │ │ ├── ansicolor_windows.go │ │ ├── ansicolor_windows_test.go │ │ ├── example_test.go │ │ └── export_test.go │ └── gopkg.in │ └── yaml.v2 │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── decode_test.go │ ├── emitterc.go │ ├── encode.go │ ├── encode_test.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── suite_test.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── LICENSE ├── Makefile ├── README.md ├── VERSION ├── app ├── app.go ├── config.go └── config_test.go ├── cig.go ├── docker-compose.yml ├── install.sh ├── output └── output.go ├── repo └── repo.go └── test └── fixtures ├── invalid └── .cig.yaml └── valid └── .cig.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Dockerfile -------------------------------------------------------------------------------- /Godeps/Godeps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/Godeps.json -------------------------------------------------------------------------------- /Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/Readme -------------------------------------------------------------------------------- /Godeps/_workspace/.gitignore: -------------------------------------------------------------------------------- 1 | /pkg 2 | /bin 3 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/app.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/app_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/autocomplete/bash_autocomplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/autocomplete/bash_autocomplete -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/autocomplete/zsh_autocomplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/autocomplete/zsh_autocomplete -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/cli.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/cli_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/cli_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/command.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/command_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/context.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/context_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/flag.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/flag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/flag_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/help.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/helpers_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fatih/color/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 1.3 3 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fatih/color/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/fatih/color/LICENSE.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fatih/color/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/fatih/color/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fatih/color/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/fatih/color/color.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fatih/color/color_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/fatih/color/color_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fatih/color/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/fatih/color/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/mitchellh/go-homedir/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/mitchellh/go-homedir/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/mitchellh/go-homedir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/mitchellh/go-homedir/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/mitchellh/go-homedir/homedir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/mitchellh/go-homedir/homedir.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/mitchellh/go-homedir/homedir_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/mitchellh/go-homedir/homedir_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/shiena/ansicolor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/shiena/ansicolor/.gitignore -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/shiena/ansicolor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/shiena/ansicolor/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/shiena/ansicolor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/shiena/ansicolor/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/shiena/ansicolor/ansicolor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/shiena/ansicolor/ansicolor.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/shiena/ansicolor/ansicolor/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/shiena/ansicolor/ansicolor/main.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/shiena/ansicolor/ansicolor_ansi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/shiena/ansicolor/ansicolor_ansi.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/shiena/ansicolor/ansicolor_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/shiena/ansicolor/ansicolor_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/shiena/ansicolor/ansicolor_windows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/shiena/ansicolor/ansicolor_windows_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/shiena/ansicolor/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/shiena/ansicolor/example_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/shiena/ansicolor/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/github.com/shiena/ansicolor/export_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/decode_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/encode_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/suite_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.1.5 2 | -------------------------------------------------------------------------------- /app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/app/app.go -------------------------------------------------------------------------------- /app/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/app/config.go -------------------------------------------------------------------------------- /app/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/app/config_test.go -------------------------------------------------------------------------------- /cig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/cig.go -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/install.sh -------------------------------------------------------------------------------- /output/output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/output/output.go -------------------------------------------------------------------------------- /repo/repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/repo/repo.go -------------------------------------------------------------------------------- /test/fixtures/invalid/.cig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/test/fixtures/invalid/.cig.yaml -------------------------------------------------------------------------------- /test/fixtures/valid/.cig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenjack/cig/HEAD/test/fixtures/valid/.cig.yaml --------------------------------------------------------------------------------