├── .dockerignore ├── .gitignore ├── CHANGELOG.md ├── Dockerfile ├── Godeps ├── Godeps.json ├── Readme └── _workspace │ ├── .gitignore │ └── src │ └── github.com │ ├── CenturyLinkLabs │ └── testmux │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── testmux.go │ │ └── testmux_test.go │ ├── Sirupsen │ └── logrus │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── entry.go │ │ ├── entry_test.go │ │ ├── examples │ │ ├── basic │ │ │ └── basic.go │ │ └── hook │ │ │ └── hook.go │ │ ├── exported.go │ │ ├── formatter.go │ │ ├── formatter_bench_test.go │ │ ├── hook_test.go │ │ ├── hooks.go │ │ ├── hooks │ │ ├── airbrake │ │ │ └── airbrake.go │ │ ├── papertrail │ │ │ ├── README.md │ │ │ ├── papertrail.go │ │ │ └── papertrail_test.go │ │ ├── sentry │ │ │ ├── README.md │ │ │ ├── sentry.go │ │ │ └── sentry_test.go │ │ └── syslog │ │ │ ├── README.md │ │ │ ├── syslog.go │ │ │ └── syslog_test.go │ │ ├── json_formatter.go │ │ ├── logger.go │ │ ├── logrus.go │ │ ├── logrus_test.go │ │ ├── terminal_darwin.go │ │ ├── terminal_freebsd.go │ │ ├── terminal_linux.go │ │ ├── terminal_notwindows.go │ │ ├── terminal_openbsd.go │ │ ├── terminal_windows.go │ │ ├── text_formatter.go │ │ └── text_formatter_test.go │ ├── docker │ └── docker │ │ ├── pkg │ │ ├── archive │ │ │ ├── MAINTAINERS │ │ │ ├── README.md │ │ │ ├── archive.go │ │ │ ├── archive_test.go │ │ │ ├── archive_unix.go │ │ │ ├── archive_windows.go │ │ │ ├── changes.go │ │ │ ├── changes_test.go │ │ │ ├── diff.go │ │ │ ├── diff_test.go │ │ │ ├── example_changes.go │ │ │ ├── testdata │ │ │ │ └── broken.tar │ │ │ ├── time_linux.go │ │ │ ├── time_unsupported.go │ │ │ ├── utils_test.go │ │ │ └── wrap.go │ │ ├── fileutils │ │ │ └── fileutils.go │ │ ├── ioutils │ │ │ ├── readers.go │ │ │ ├── readers_test.go │ │ │ └── writers.go │ │ ├── pools │ │ │ ├── pools.go │ │ │ └── pools_nopool.go │ │ ├── promise │ │ │ └── promise.go │ │ ├── system │ │ │ ├── MAINTAINERS │ │ │ ├── errors.go │ │ │ ├── lstat.go │ │ │ ├── lstat_test.go │ │ │ ├── lstat_windows.go │ │ │ ├── meminfo.go │ │ │ ├── meminfo_linux.go │ │ │ ├── meminfo_linux_test.go │ │ │ ├── meminfo_unsupported.go │ │ │ ├── mknod.go │ │ │ ├── mknod_windows.go │ │ │ ├── stat.go │ │ │ ├── stat_linux.go │ │ │ ├── stat_test.go │ │ │ ├── stat_unsupported.go │ │ │ ├── stat_windows.go │ │ │ ├── umask.go │ │ │ ├── umask_windows.go │ │ │ ├── utimes_darwin.go │ │ │ ├── utimes_freebsd.go │ │ │ ├── utimes_linux.go │ │ │ ├── utimes_test.go │ │ │ ├── utimes_unsupported.go │ │ │ ├── xattrs_linux.go │ │ │ └── xattrs_unsupported.go │ │ └── units │ │ │ ├── MAINTAINERS │ │ │ ├── duration.go │ │ │ ├── duration_test.go │ │ │ ├── size.go │ │ │ └── size_test.go │ │ └── vendor │ │ └── src │ │ └── code.google.com │ │ └── p │ │ └── go │ │ └── src │ │ └── pkg │ │ └── archive │ │ └── tar │ │ ├── common.go │ │ ├── example_test.go │ │ ├── reader.go │ │ ├── reader_test.go │ │ ├── stat_atim.go │ │ ├── stat_atimespec.go │ │ ├── stat_unix.go │ │ ├── tar_test.go │ │ ├── testdata │ │ ├── gnu.tar │ │ ├── nil-uid.tar │ │ ├── pax.tar │ │ ├── small.txt │ │ ├── small2.txt │ │ ├── sparse-formats.tar │ │ ├── star.tar │ │ ├── ustar.tar │ │ ├── v7.tar │ │ ├── writer-big-long.tar │ │ ├── writer-big.tar │ │ ├── writer.tar │ │ └── xattrs.tar │ │ ├── writer.go │ │ └── writer_test.go │ ├── fsouza │ └── go-dockerclient │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── DOCKER-LICENSE │ │ ├── LICENSE │ │ ├── README.markdown │ │ ├── build_test.go │ │ ├── change.go │ │ ├── change_test.go │ │ ├── client.go │ │ ├── client_test.go │ │ ├── container.go │ │ ├── container_test.go │ │ ├── env.go │ │ ├── env_test.go │ │ ├── event.go │ │ ├── event_test.go │ │ ├── example_test.go │ │ ├── exec.go │ │ ├── exec_test.go │ │ ├── image.go │ │ ├── image_test.go │ │ ├── misc.go │ │ ├── misc_test.go │ │ ├── signal.go │ │ ├── stdcopy.go │ │ ├── stdcopy_test.go │ │ ├── tar.go │ │ ├── testing │ │ ├── bin │ │ │ └── fmtpolice │ │ ├── data │ │ │ ├── .dockerignore │ │ │ ├── Dockerfile │ │ │ ├── barfile │ │ │ ├── ca.pem │ │ │ ├── cert.pem │ │ │ ├── container.tar │ │ │ ├── dockerfile.tar │ │ │ ├── foofile │ │ │ ├── key.pem │ │ │ ├── server.pem │ │ │ ├── serverkey.pem │ │ │ └── symlink │ │ ├── server.go │ │ ├── server_test.go │ │ └── writer.go │ │ └── tls.go │ ├── fzzy │ └── radix │ │ ├── extra │ │ └── pool │ │ │ ├── pool.go │ │ │ └── pool_test.go │ │ └── redis │ │ ├── client.go │ │ ├── client_test.go │ │ ├── doc.go │ │ ├── reply.go │ │ ├── reply_test.go │ │ └── resp │ │ ├── resp.go │ │ └── resp_test.go │ ├── gorilla │ ├── context │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── context.go │ │ ├── context_test.go │ │ └── doc.go │ └── mux │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench_test.go │ │ ├── doc.go │ │ ├── mux.go │ │ ├── mux_test.go │ │ ├── old_test.go │ │ ├── regexp.go │ │ └── route.go │ └── stretchr │ ├── objx │ ├── .gitignore │ ├── LICENSE.md │ ├── README.md │ ├── accessors.go │ ├── accessors_test.go │ ├── codegen │ │ ├── array-access.txt │ │ ├── index.html │ │ ├── template.txt │ │ └── types_list.txt │ ├── constants.go │ ├── conversions.go │ ├── conversions_test.go │ ├── doc.go │ ├── fixture_test.go │ ├── map.go │ ├── map_for_test.go │ ├── map_test.go │ ├── mutations.go │ ├── mutations_test.go │ ├── security.go │ ├── security_test.go │ ├── simple_example_test.go │ ├── tests.go │ ├── tests_test.go │ ├── type_specific_codegen.go │ ├── type_specific_codegen_test.go │ ├── value.go │ └── value_test.go │ └── testify │ ├── assert │ ├── assertions.go │ ├── assertions_test.go │ ├── doc.go │ ├── errors.go │ ├── forward_assertions.go │ ├── forward_assertions_test.go │ ├── http_assertions.go │ └── http_assertions_test.go │ ├── mock │ ├── doc.go │ ├── mock.go │ └── mock_test.go │ ├── require │ ├── doc.go │ ├── forward_requirements.go │ ├── forward_requirements_test.go │ ├── requirements.go │ └── requirements_test.go │ └── suite │ ├── doc.go │ ├── interfaces.go │ ├── suite.go │ └── suite_test.go ├── LICENSE ├── README.md ├── api ├── api.go ├── api_test.go └── handlers.go ├── circle.yml ├── docker-compose.yml ├── job ├── executor.go ├── executor_test.go ├── manager.go ├── manager_test.go ├── repository.go ├── repository_test.go ├── types.go └── types_test.go ├── main.go └── run-dray.sh /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dray 2 | .envrc 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Dockerfile -------------------------------------------------------------------------------- /Godeps/Godeps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/Godeps.json -------------------------------------------------------------------------------- /Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/Readme -------------------------------------------------------------------------------- /Godeps/_workspace/.gitignore: -------------------------------------------------------------------------------- 1 | /pkg 2 | /bin 3 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/CenturyLinkLabs/testmux/.gitignore: -------------------------------------------------------------------------------- 1 | .envrc 2 | coverage.out 3 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/CenturyLinkLabs/testmux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/CenturyLinkLabs/testmux/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/CenturyLinkLabs/testmux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/CenturyLinkLabs/testmux/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/CenturyLinkLabs/testmux/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/CenturyLinkLabs/testmux/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/CenturyLinkLabs/testmux/testmux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/CenturyLinkLabs/testmux/testmux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/CenturyLinkLabs/testmux/testmux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/CenturyLinkLabs/testmux/testmux_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/entry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/entry_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/basic/basic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/basic/basic.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/hook/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/hook/hook.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter_bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter_bench_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hook_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_darwin.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_freebsd.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_linux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_notwindows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_notwindows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_openbsd.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/archive/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/archive/MAINTAINERS -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/archive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/archive/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/archive/archive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/archive/archive.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/archive/archive_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/archive/archive_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/archive/archive_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/archive/archive_unix.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/archive/archive_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/archive/archive_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/archive/changes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/archive/changes.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/archive/changes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/archive/changes_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/archive/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/archive/diff.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/archive/diff_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/archive/diff_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/archive/example_changes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/archive/example_changes.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/archive/testdata/broken.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/archive/testdata/broken.tar -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/archive/time_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/archive/time_linux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/archive/time_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/archive/time_unsupported.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/archive/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/archive/utils_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/archive/wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/archive/wrap.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/fileutils/fileutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/fileutils/fileutils.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/readers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/readers.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/readers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/readers_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/writers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/ioutils/writers.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/pools/pools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/pools/pools.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/pools/pools_nopool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/pools/pools_nopool.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/promise/promise.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/promise/promise.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/MAINTAINERS -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/errors.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/lstat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/lstat.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/lstat_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/lstat_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/lstat_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/lstat_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/meminfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/meminfo.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/meminfo_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/meminfo_linux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/meminfo_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/meminfo_linux_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/meminfo_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/meminfo_unsupported.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/mknod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/mknod.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/mknod_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/mknod_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/stat.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/stat_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/stat_linux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/stat_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/stat_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/stat_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/stat_unsupported.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/stat_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/stat_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/umask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/umask.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/umask_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/umask_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/utimes_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/utimes_darwin.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/utimes_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/utimes_freebsd.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/utimes_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/utimes_linux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/utimes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/utimes_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/utimes_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/utimes_unsupported.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/xattrs_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/xattrs_linux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/system/xattrs_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/system/xattrs_unsupported.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/units/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/units/MAINTAINERS -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/units/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/units/duration.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/units/duration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/units/duration_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/units/size.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/units/size.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/units/size_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/units/size_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/common.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/example_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/reader.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/reader_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/stat_atim.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/stat_atim.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/stat_atimespec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/stat_atimespec.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/stat_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/stat_unix.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/tar_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/tar_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/testdata/gnu.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/testdata/gnu.tar -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/testdata/nil-uid.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/testdata/nil-uid.tar -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/testdata/pax.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/testdata/pax.tar -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/testdata/small.txt: -------------------------------------------------------------------------------- 1 | Kilts -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/testdata/small2.txt: -------------------------------------------------------------------------------- 1 | Google.com 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/testdata/sparse-formats.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/testdata/sparse-formats.tar -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/testdata/star.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/testdata/star.tar -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/testdata/ustar.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/testdata/ustar.tar -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/testdata/v7.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/testdata/v7.tar -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/testdata/writer-big-long.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/testdata/writer-big-long.tar -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/testdata/writer-big.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/testdata/writer-big.tar -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/testdata/writer.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/testdata/writer.tar -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/testdata/xattrs.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/testdata/xattrs.tar -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/writer.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar/writer_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/AUTHORS -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/DOCKER-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/DOCKER-LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/README.markdown -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/build_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/build_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/change.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/change.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/change_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/change_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/client.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/client_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/container.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/container_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/container_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/env.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/env_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/env_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/event.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/event_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/event_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/example_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/exec.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/exec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/exec_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/image.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/image_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/misc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/misc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/misc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/misc_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/signal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/signal.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/stdcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/stdcopy.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/stdcopy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/stdcopy_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/tar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/tar.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/bin/fmtpolice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/bin/fmtpolice -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/.dockerignore -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/Dockerfile -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/barfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/ca.pem -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/cert.pem -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/container.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/container.tar -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/dockerfile.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/dockerfile.tar -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/foofile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/key.pem -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/server.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/server.pem -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/serverkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/serverkey.pem -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/data/symlink: -------------------------------------------------------------------------------- 1 | doesnotexist -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/server.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/server_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/testing/writer.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fsouza/go-dockerclient/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fsouza/go-dockerclient/tls.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fzzy/radix/extra/pool/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fzzy/radix/extra/pool/pool.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fzzy/radix/extra/pool/pool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fzzy/radix/extra/pool/pool_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fzzy/radix/redis/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fzzy/radix/redis/client.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fzzy/radix/redis/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fzzy/radix/redis/client_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fzzy/radix/redis/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fzzy/radix/redis/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fzzy/radix/redis/reply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fzzy/radix/redis/reply.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fzzy/radix/redis/reply_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fzzy/radix/redis/reply_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fzzy/radix/redis/resp/resp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fzzy/radix/redis/resp/resp.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/fzzy/radix/redis/resp/resp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/fzzy/radix/redis/resp/resp_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/gorilla/context/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/gorilla/context/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/gorilla/context/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/gorilla/context/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/gorilla/context/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/gorilla/context/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/gorilla/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/gorilla/context/context.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/gorilla/context/context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/gorilla/context/context_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/gorilla/context/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/gorilla/context/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/gorilla/mux/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/gorilla/mux/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/gorilla/mux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/gorilla/mux/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/gorilla/mux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/gorilla/mux/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/gorilla/mux/bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/gorilla/mux/bench_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/gorilla/mux/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/gorilla/mux/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/gorilla/mux/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/gorilla/mux/mux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/gorilla/mux/mux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/gorilla/mux/mux_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/gorilla/mux/old_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/gorilla/mux/old_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/gorilla/mux/regexp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/gorilla/mux/regexp.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/gorilla/mux/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/gorilla/mux/route.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/.gitignore -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/LICENSE.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/accessors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/accessors.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/accessors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/accessors_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/codegen/array-access.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/codegen/array-access.txt -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/codegen/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/codegen/index.html -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/codegen/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/codegen/template.txt -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/codegen/types_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/codegen/types_list.txt -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/constants.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/conversions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/conversions.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/conversions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/conversions_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/fixture_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/fixture_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/map.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/map_for_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/map_for_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/map_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/mutations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/mutations.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/mutations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/mutations_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/security.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/security.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/security_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/security_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/simple_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/simple_example_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/tests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/tests.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/tests_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/tests_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/type_specific_codegen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/type_specific_codegen.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/type_specific_codegen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/type_specific_codegen_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/objx/value.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/objx/value_test.go: -------------------------------------------------------------------------------- 1 | package objx 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/assert/assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/assert/assertions.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/assert/assertions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/assert/assertions_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/assert/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/assert/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/assert/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/assert/errors.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/assert/forward_assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/assert/forward_assertions.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/assert/forward_assertions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/assert/forward_assertions_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/assert/http_assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/assert/http_assertions.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/assert/http_assertions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/assert/http_assertions_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/mock/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/mock/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/mock/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/mock/mock.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/mock/mock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/mock/mock_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/require/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/require/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/require/forward_requirements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/require/forward_requirements.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/require/forward_requirements_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/require/forward_requirements_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/require/requirements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/require/requirements.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/require/requirements_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/require/requirements_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/suite/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/suite/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/suite/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/suite/interfaces.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/suite/suite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/suite/suite.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/stretchr/testify/suite/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/Godeps/_workspace/src/github.com/stretchr/testify/suite/suite_test.go -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/README.md -------------------------------------------------------------------------------- /api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/api/api.go -------------------------------------------------------------------------------- /api/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/api/api_test.go -------------------------------------------------------------------------------- /api/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/api/handlers.go -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/circle.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /job/executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/job/executor.go -------------------------------------------------------------------------------- /job/executor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/job/executor_test.go -------------------------------------------------------------------------------- /job/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/job/manager.go -------------------------------------------------------------------------------- /job/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/job/manager_test.go -------------------------------------------------------------------------------- /job/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/job/repository.go -------------------------------------------------------------------------------- /job/repository_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/job/repository_test.go -------------------------------------------------------------------------------- /job/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/job/types.go -------------------------------------------------------------------------------- /job/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/job/types_test.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/main.go -------------------------------------------------------------------------------- /run-dray.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenturyLinkLabs/dray/HEAD/run-dray.sh --------------------------------------------------------------------------------