├── LICENSE ├── README.md ├── glide.lock ├── glide.yaml ├── img.png ├── main.go ├── rules ├── old.go ├── rules.go └── uses.go └── vendor ├── github.com ├── Masterminds │ ├── glide │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── action │ │ │ ├── about.go │ │ │ ├── about_test.go │ │ │ ├── cache.go │ │ │ ├── config_wizard.go │ │ │ ├── create.go │ │ │ ├── debug.go │ │ │ ├── doc.go │ │ │ ├── ensure.go │ │ │ ├── get.go │ │ │ ├── get_test.go │ │ │ ├── import_gb.go │ │ │ ├── import_godep.go │ │ │ ├── import_gom.go │ │ │ ├── import_gpm.go │ │ │ ├── init.go │ │ │ ├── install.go │ │ │ ├── list.go │ │ │ ├── list_test.go │ │ │ ├── mirrors.go │ │ │ ├── name.go │ │ │ ├── name_test.go │ │ │ ├── no_vendor.go │ │ │ ├── no_vendor_test.go │ │ │ ├── plugin.go │ │ │ ├── plugin_test.go │ │ │ ├── project_info.go │ │ │ ├── rebuild.go │ │ │ ├── rebuild_test.go │ │ │ ├── remove.go │ │ │ ├── tree.go │ │ │ └── update.go │ │ ├── cache │ │ │ ├── cache.go │ │ │ ├── cache_test.go │ │ │ ├── global_lock.go │ │ │ └── memory.go │ │ ├── cfg │ │ │ ├── cfg.go │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ ├── lock.go │ │ │ └── lock_test.go │ │ ├── dependency │ │ │ ├── resolver.go │ │ │ ├── resolver_test.go │ │ │ └── scan.go │ │ ├── docs │ │ │ ├── commands.md │ │ │ ├── example-glide.yaml │ │ │ ├── faq.md │ │ │ ├── getting-started.md │ │ │ ├── glide-plugin-example │ │ │ ├── glide.lock.md │ │ │ ├── glide.yaml.md │ │ │ ├── importing.md │ │ │ ├── index.md │ │ │ ├── plugins.md │ │ │ ├── resolving-imports.md │ │ │ ├── vendor.md │ │ │ └── versions.md │ │ ├── gb │ │ │ ├── gb.go │ │ │ └── manifest.go │ │ ├── glide.go │ │ ├── glide.lock │ │ ├── glide.yaml │ │ ├── glide_test.go │ │ ├── godep │ │ │ ├── godep.go │ │ │ └── strip │ │ │ │ ├── strip.go │ │ │ │ └── strip_test.go │ │ ├── gom │ │ │ ├── gom.go │ │ │ └── parser.go │ │ ├── gpm │ │ │ └── gpm.go │ │ ├── importer │ │ │ └── importer.go │ │ ├── mirrors │ │ │ ├── cfg.go │ │ │ ├── mirrors.go │ │ │ └── mirrors_test.go │ │ ├── mkdocs.yml │ │ ├── msg │ │ │ ├── msg.go │ │ │ ├── out.go │ │ │ └── out_windows.go │ │ ├── path │ │ │ ├── path.go │ │ │ ├── path_test.go │ │ │ └── strip.go │ │ ├── repo │ │ │ ├── installer.go │ │ │ ├── repo.go │ │ │ ├── semver.go │ │ │ ├── set_reference.go │ │ │ ├── tracker.go │ │ │ ├── tracker_test.go │ │ │ └── vcs.go │ │ ├── testdata │ │ │ ├── name │ │ │ │ ├── glide.yaml │ │ │ │ └── glide2.yaml │ │ │ ├── nv │ │ │ │ ├── a │ │ │ │ │ └── foo.empty │ │ │ │ ├── b │ │ │ │ │ └── foo.empty │ │ │ │ └── c │ │ │ │ │ └── foo.empty │ │ │ ├── path │ │ │ │ ├── a │ │ │ │ │ ├── b │ │ │ │ │ │ └── c │ │ │ │ │ │ │ └── placeholder.empty │ │ │ │ │ └── glide.yaml │ │ │ │ └── x │ │ │ │ │ ├── glide.yaml │ │ │ │ │ ├── vendor │ │ │ │ │ └── y │ │ │ │ │ └── z │ │ │ │ │ └── placeholder.empty │ │ │ ├── plugin │ │ │ │ └── glide-hello │ │ │ └── rebuild │ │ │ │ └── glide.yaml │ │ ├── tree │ │ │ ├── tree.go │ │ │ └── tree_test.go │ │ └── util │ │ │ ├── normalizename_test.go │ │ │ ├── util.go │ │ │ └── util_test.go │ ├── semver │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── benchmark_test.go │ │ ├── collection.go │ │ ├── collection_test.go │ │ ├── constraints.go │ │ ├── constraints_test.go │ │ ├── doc.go │ │ ├── version.go │ │ └── version_test.go │ └── vcs │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── bzr.go │ │ ├── bzr_test.go │ │ ├── errors.go │ │ ├── errors_test.go │ │ ├── git.go │ │ ├── git_test.go │ │ ├── glide.yaml │ │ ├── hg.go │ │ ├── hg_test.go │ │ ├── repo.go │ │ ├── repo_test.go │ │ ├── svn.go │ │ ├── svn_test.go │ │ ├── vcs_local_lookup.go │ │ ├── vcs_remote_lookup.go │ │ └── vcs_remote_lookup_test.go └── urfave │ └── cli │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── altsrc │ ├── flag.go │ ├── flag_test.go │ ├── helpers_test.go │ ├── input_source_context.go │ ├── map_input_source.go │ ├── yaml_command_test.go │ └── yaml_file_loader.go │ ├── app.go │ ├── app_test.go │ ├── appveyor.yml │ ├── autocomplete │ ├── bash_autocomplete │ └── zsh_autocomplete │ ├── category.go │ ├── cli.go │ ├── command.go │ ├── command_test.go │ ├── context.go │ ├── context_test.go │ ├── errors.go │ ├── errors_test.go │ ├── flag.go │ ├── flag_test.go │ ├── funcs.go │ ├── help.go │ ├── help_test.go │ ├── helpers_test.go │ └── runtests └── 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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/README.md -------------------------------------------------------------------------------- /glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/glide.lock -------------------------------------------------------------------------------- /glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/glide.yaml -------------------------------------------------------------------------------- /img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/img.png -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/main.go -------------------------------------------------------------------------------- /rules/old.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/rules/old.go -------------------------------------------------------------------------------- /rules/rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/rules/rules.go -------------------------------------------------------------------------------- /rules/uses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/rules/uses.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/Makefile -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/README.md -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/action/about.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/action/about.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/action/about_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/action/about_test.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/action/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/action/cache.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/action/config_wizard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/action/config_wizard.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/action/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/action/create.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/action/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/action/debug.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/action/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/action/doc.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/action/ensure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/action/ensure.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/action/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/action/get.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/action/get_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/action/get_test.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/action/import_gb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/action/import_gb.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/action/import_godep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/action/import_godep.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/action/import_gom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/action/import_gom.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/action/import_gpm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/action/import_gpm.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/action/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/action/init.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/action/install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/action/install.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/action/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/action/list.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/action/list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/action/list_test.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/action/mirrors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/action/mirrors.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/action/name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/action/name.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/action/name_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/action/name_test.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/action/no_vendor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/action/no_vendor.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/action/no_vendor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/action/no_vendor_test.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/action/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/action/plugin.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/action/plugin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/action/plugin_test.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/action/project_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/action/project_info.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/action/rebuild.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/action/rebuild.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/action/rebuild_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/action/rebuild_test.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/action/remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/action/remove.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/action/tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/action/tree.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/action/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/action/update.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/cache/cache.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/cache/cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/cache/cache_test.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/cache/global_lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/cache/global_lock.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/cache/memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/cache/memory.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/cfg/cfg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/cfg/cfg.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/cfg/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/cfg/config.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/cfg/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/cfg/config_test.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/cfg/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/cfg/lock.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/cfg/lock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/cfg/lock_test.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/dependency/resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/dependency/resolver.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/dependency/resolver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/dependency/resolver_test.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/dependency/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/dependency/scan.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/docs/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/docs/commands.md -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/docs/example-glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/docs/example-glide.yaml -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/docs/faq.md -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/docs/getting-started.md -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/docs/glide-plugin-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/docs/glide-plugin-example -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/docs/glide.lock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/docs/glide.lock.md -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/docs/glide.yaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/docs/glide.yaml.md -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/docs/importing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/docs/importing.md -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/docs/index.md -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/docs/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/docs/plugins.md -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/docs/resolving-imports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/docs/resolving-imports.md -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/docs/vendor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/docs/vendor.md -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/docs/versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/docs/versions.md -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/gb/gb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/gb/gb.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/gb/manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/gb/manifest.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/glide.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/glide.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/glide.lock -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/glide.yaml -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/glide_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/glide_test.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/godep/godep.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/godep/godep.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/godep/strip/strip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/godep/strip/strip.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/godep/strip/strip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/godep/strip/strip_test.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/gom/gom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/gom/gom.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/gom/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/gom/parser.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/gpm/gpm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/gpm/gpm.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/importer/importer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/importer/importer.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/mirrors/cfg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/mirrors/cfg.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/mirrors/mirrors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/mirrors/mirrors.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/mirrors/mirrors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/mirrors/mirrors_test.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/mkdocs.yml -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/msg/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/msg/msg.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/msg/out.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/msg/out.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/msg/out_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/msg/out_windows.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/path/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/path/path.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/path/path_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/path/path_test.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/path/strip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/path/strip.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/repo/installer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/repo/installer.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/repo/repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/repo/repo.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/repo/semver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/repo/semver.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/repo/set_reference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/repo/set_reference.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/repo/tracker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/repo/tracker.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/repo/tracker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/repo/tracker_test.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/repo/vcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/repo/vcs.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/testdata/name/glide.yaml: -------------------------------------------------------------------------------- 1 | package: technosophos.com/x/foo 2 | import: [] 3 | -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/testdata/name/glide2.yaml: -------------------------------------------------------------------------------- 1 | package: another/name 2 | import: [] 3 | -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/testdata/nv/a/foo.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/testdata/nv/b/foo.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/testdata/nv/c/foo.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/testdata/path/a/b/c/placeholder.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/testdata/path/a/glide.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/testdata/path/x/glide.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/testdata/path/x/vendor: -------------------------------------------------------------------------------- 1 | symlinked_vendor -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/testdata/path/x/y/z/placeholder.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/testdata/plugin/glide-hello: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "Hello from the other glide" 3 | -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/testdata/rebuild/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/testdata/rebuild/glide.yaml -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/tree/tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/tree/tree.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/tree/tree_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/tree/tree_test.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/util/normalizename_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/util/normalizename_test.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/util/util.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/glide/util/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/glide/util/util_test.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/semver/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/semver/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/semver/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/semver/README.md -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/semver/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/semver/benchmark_test.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/collection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/semver/collection.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/collection_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/semver/collection_test.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/constraints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/semver/constraints.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/constraints_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/semver/constraints_test.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/semver/doc.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/semver/version.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/semver/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/semver/version_test.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/vcs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/vcs/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/vcs/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/vcs/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/vcs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/vcs/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/vcs/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/vcs/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/vcs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/vcs/README.md -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/vcs/bzr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/vcs/bzr.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/vcs/bzr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/vcs/bzr_test.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/vcs/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/vcs/errors.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/vcs/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/vcs/errors_test.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/vcs/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/vcs/git.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/vcs/git_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/vcs/git_test.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/vcs/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/vcs/glide.yaml -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/vcs/hg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/vcs/hg.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/vcs/hg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/vcs/hg_test.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/vcs/repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/vcs/repo.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/vcs/repo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/vcs/repo_test.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/vcs/svn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/vcs/svn.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/vcs/svn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/vcs/svn_test.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/vcs/vcs_local_lookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/vcs/vcs_local_lookup.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/vcs/vcs_remote_lookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/vcs/vcs_remote_lookup.go -------------------------------------------------------------------------------- /vendor/github.com/Masterminds/vcs/vcs_remote_lookup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/Masterminds/vcs/vcs_remote_lookup_test.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/.gitignore: -------------------------------------------------------------------------------- 1 | *.coverprofile 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/urfave/cli/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/urfave/cli/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/urfave/cli/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/urfave/cli/README.md -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/altsrc/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/urfave/cli/altsrc/flag.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/altsrc/flag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/urfave/cli/altsrc/flag_test.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/altsrc/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/urfave/cli/altsrc/helpers_test.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/altsrc/input_source_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/urfave/cli/altsrc/input_source_context.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/altsrc/map_input_source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/urfave/cli/altsrc/map_input_source.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/altsrc/yaml_command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/urfave/cli/altsrc/yaml_command_test.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/altsrc/yaml_file_loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/urfave/cli/altsrc/yaml_file_loader.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/urfave/cli/app.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/urfave/cli/app_test.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/urfave/cli/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/autocomplete/bash_autocomplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/urfave/cli/autocomplete/bash_autocomplete -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/autocomplete/zsh_autocomplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/urfave/cli/autocomplete/zsh_autocomplete -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/category.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/urfave/cli/category.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/urfave/cli/cli.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/urfave/cli/command.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/urfave/cli/command_test.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/urfave/cli/context.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/urfave/cli/context_test.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/urfave/cli/errors.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/urfave/cli/errors_test.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/urfave/cli/flag.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/flag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/urfave/cli/flag_test.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/urfave/cli/funcs.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/urfave/cli/help.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/help_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/urfave/cli/help_test.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/urfave/cli/helpers_test.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/github.com/urfave/cli/runtests -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/gopkg.in/yaml.v2/decode_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/gopkg.in/yaml.v2/encode_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/gopkg.in/yaml.v2/suite_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Masterminds/glide-report/HEAD/vendor/gopkg.in/yaml.v2/yamlprivateh.go --------------------------------------------------------------------------------