Sha256: 309b2e948c3faf1097ad82a6ea1e94b0d895d5958734609d4075e4346f1e3ff9
Contents?: true
Size: 574 Bytes
Versions: 1
Compression:
Stored size: 574 Bytes
Contents
module Docker module Remote class ClientError < StandardError; end class ServerError < StandardError; end class UnauthorizedError < ClientError; end class NotFoundError < ClientError; end class UnknownRepoError < ClientError; end class UnsupportedAuthTypeError < StandardError; end autoload :BasicAuth, 'docker/remote/basic_auth' autoload :BearerAuth, 'docker/remote/bearer_auth' autoload :Client, 'docker/remote/client' autoload :NoAuth, 'docker/remote/no_auth' autoload :Utils, 'docker/remote/utils' end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
docker-remote-0.6.0 | lib/docker/remote.rb |