tugboat 1.3.0 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +16 -0
- data/lib/tugboat/middleware/list_images.rb +1 -1
- data/lib/tugboat/version.rb +1 -1
- data/spec/cli/images_cli_spec.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6d6756d7aed64e40d62a18350b778ca7a56ddd08
|
|
4
|
+
data.tar.gz: 4a8e491b6116538bac1325d70a000529be9ffc42
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c703030fcc46ddb84eba13cedf3f77b1edf8828c4f8be982f171ba67fb9c12359a80e6141e26b6684b2afd612fe4efbf274350b5d36c13d226f0d5042170055f
|
|
7
|
+
data.tar.gz: ed1455015c08cc87990f7d837084ce6f0b52f1debb107afc62ff3144246eb582ec4d8e48c603aff1c6ccbdc554bfb1297f02d3c6354e462fd13d6ab5033749b7
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## [v1.3.0](https://github.com/pearkes/tugboat/tree/v1.3.0) (2015-07-19)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/pearkes/tugboat/compare/v1.2.0...v1.3.0)
|
|
6
|
+
|
|
7
|
+
**Merged pull requests:**
|
|
8
|
+
|
|
9
|
+
- Implement single attribute fetcher and porcelain mode for droplet info command [\#170](https://github.com/pearkes/tugboat/pull/170) ([ethanal](https://github.com/ethanal))
|
|
10
|
+
|
|
3
11
|
## [v1.2.0](https://github.com/pearkes/tugboat/tree/v1.2.0) (2015-07-18)
|
|
4
12
|
|
|
5
13
|
[Full Changelog](https://github.com/pearkes/tugboat/compare/v1.1.0...v1.2.0)
|
|
@@ -28,6 +36,14 @@
|
|
|
28
36
|
|
|
29
37
|
- Update ssh to private ip [\#172](https://github.com/pearkes/tugboat/pull/172) ([petems](https://github.com/petems))
|
|
30
38
|
|
|
39
|
+
## [v2.0.0.ALPHA](https://github.com/pearkes/tugboat/tree/v2.0.0.ALPHA) (2015-07-18)
|
|
40
|
+
|
|
41
|
+
[Full Changelog](https://github.com/pearkes/tugboat/compare/v1.0.0...v2.0.0.ALPHA)
|
|
42
|
+
|
|
43
|
+
**Closed issues:**
|
|
44
|
+
|
|
45
|
+
- 1.0.0 Release [\#125](https://github.com/pearkes/tugboat/issues/125)
|
|
46
|
+
|
|
31
47
|
## [v1.0.0](https://github.com/pearkes/tugboat/tree/v1.0.0) (2015-05-26)
|
|
32
48
|
|
|
33
49
|
[Full Changelog](https://github.com/pearkes/tugboat/compare/v0.2.0...v1.0.0)
|
data/lib/tugboat/version.rb
CHANGED
data/spec/cli/images_cli_spec.rb
CHANGED
|
@@ -12,7 +12,7 @@ describe Tugboat::CLI do
|
|
|
12
12
|
|
|
13
13
|
expect($stdout.string).to eq <<-eos
|
|
14
14
|
Listing Your Images
|
|
15
|
-
(Use `tugboat images
|
|
15
|
+
(Use `tugboat images --global` to show all images)
|
|
16
16
|
My Images:
|
|
17
17
|
NYTD Backup 1-18-2012 (id: 466, distro: Ubuntu)
|
|
18
18
|
NLP Final (id: 478, distro: Ubuntu)
|
|
@@ -29,7 +29,7 @@ NLP Final (id: 478, distro: Ubuntu)
|
|
|
29
29
|
|
|
30
30
|
expect($stdout.string).to eq <<-eos
|
|
31
31
|
Listing Your Images
|
|
32
|
-
(Use `tugboat images
|
|
32
|
+
(Use `tugboat images --global` to show all images)
|
|
33
33
|
My Images:
|
|
34
34
|
No images found
|
|
35
35
|
eos
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tugboat
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jack Pearkes
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-08-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|