Skip to content

Commit a84ddef

Browse files
committed
Update to latest fsouza/go-dockerclient
Remove satori/go.uuid from vendor path Use godeps for vendoring Add vscode tasks
1 parent 7763728 commit a84ddef

248 files changed

Lines changed: 99935 additions & 1576 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.goxc.local.json
22
.vagrant
3+
.vscode/.*

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
sudo: false
22
language: go
3-
script: go test ./...
3+
script: go test . ./cli ./dexec ./util

.vscode/tasks.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
// See http://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "0.1.0",
5+
"command": "go",
6+
"isShellCommand": true,
7+
"showOutput": "always",
8+
"tasks": [
9+
{
10+
"taskName": "install",
11+
"isBuildCommand": true,
12+
"args": [],
13+
"showOutput": "always"
14+
},
15+
{
16+
"taskName": "test",
17+
"isTestCommand": true,
18+
"args": [".", "./cli", "./dexec", "./util"],
19+
"showOutput": "always"
20+
}
21+
]
22+
}

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1010
- Add Vagrant-based acceptance tests.
1111
- Added installation instructions for Homebrew on OSX.
1212
- Add contributing instructions to readme.
13+
- Add vscode tasks configuration.
1314

1415
### Changed
1516
- Migrated from custom code that called the Docker CLI to the library 'fsouza/go-dockerclient' which uses the Docker Remote API.
1617
- Deleted custom code that called the Docker CLI.
17-
- Switch to go vendoring for dependency management.
18+
- Switch to go vendoring for dependency management using Godeps.
1819

1920
## [1.0.3] - 2015-11-13
2021
### Fixed

Godeps/Godeps.json

Lines changed: 79 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Godeps/Readme

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015 Andy Stanton
3+
Copyright (c) 2015-2016 Andy Stanton
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

acceptance-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,6 @@ run)
5252
run $2;;
5353
*)
5454
echo "Usage:"
55-
echo " ./acceptance-tests.sh [--no-clean]"
55+
echo " ./acceptance-tests.sh run [--no-clean]"
5656
;;
5757
esac

vendor/github.com/fsouza/go-dockerclient/.gitignore

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/fsouza/go-dockerclient/.travis.yml

Lines changed: 27 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)