tugboat 0.2.0 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (65) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/.travis.yml +5 -4
  4. data/CHANGELOG.md +325 -102
  5. data/CHANGELOG_old.md +150 -0
  6. data/Gemfile +6 -0
  7. data/README.md +12 -6
  8. data/Rakefile +7 -3
  9. data/features/step_definitions/steps.rb +0 -0
  10. data/features/support/env.rb +9 -0
  11. data/features/vagrant-adam/config_current_directory.feature +27 -0
  12. data/lib/tugboat/cli.rb +31 -3
  13. data/lib/tugboat/config.rb +13 -5
  14. data/lib/tugboat/middleware.rb +8 -0
  15. data/lib/tugboat/middleware/ask_for_credentials.rb +5 -4
  16. data/lib/tugboat/middleware/authentication_middleware.rb +2 -2
  17. data/lib/tugboat/middleware/config.rb +29 -0
  18. data/lib/tugboat/middleware/custom_logger.rb +2 -2
  19. data/lib/tugboat/middleware/find_droplet.rb +4 -0
  20. data/lib/tugboat/middleware/info_droplet.rb +5 -0
  21. data/lib/tugboat/middleware/inject_client.rb +1 -1
  22. data/lib/tugboat/middleware/list_droplets.rb +5 -1
  23. data/lib/tugboat/middleware/list_regions.rb +2 -2
  24. data/lib/tugboat/middleware/ssh_droplet.rb +17 -2
  25. data/lib/tugboat/version.rb +1 -1
  26. data/spec/cli/add_key_spec.rb +9 -9
  27. data/spec/cli/authorize_cli_spec.rb +76 -52
  28. data/spec/cli/create_cli_spec.rb +39 -4
  29. data/spec/cli/debug_cli_spec.rb +44 -0
  30. data/spec/cli/destroy_cli_spec.rb +30 -11
  31. data/spec/cli/destroy_image_cli_spec.rb +11 -11
  32. data/spec/cli/droplets_cli_spec.rb +6 -6
  33. data/spec/cli/halt_cli_spec.rb +9 -9
  34. data/spec/cli/images_cli_spec.rb +6 -6
  35. data/spec/cli/info_cli_spec.rb +42 -7
  36. data/spec/cli/info_image_cli_spec.rb +6 -6
  37. data/spec/cli/keys_cli_spec.rb +1 -1
  38. data/spec/cli/password_reset_cli_spec.rb +8 -8
  39. data/spec/cli/rebuild_cli_spec.rb +49 -49
  40. data/spec/cli/regions_cli_spec.rb +4 -4
  41. data/spec/cli/resize_cli_spec.rb +8 -8
  42. data/spec/cli/restart_cli_spec.rb +8 -8
  43. data/spec/cli/sizes_cli_spec.rb +1 -1
  44. data/spec/cli/snapshot_cli_spec.rb +7 -7
  45. data/spec/cli/ssh_cli_spec.rb +4 -4
  46. data/spec/cli/start_cli_spec.rb +7 -7
  47. data/spec/cli/verify_cli_spec.rb +10 -2
  48. data/spec/cli/wait_cli_spec.rb +6 -6
  49. data/spec/fixtures/500.html +68 -0
  50. data/spec/fixtures/show_droplet.json +1 -0
  51. data/spec/fixtures/show_droplet_fuzzy.json +13 -0
  52. data/spec/fixtures/show_droplet_inactive.json +1 -0
  53. data/spec/fixtures/show_droplets.json +2 -0
  54. data/spec/fixtures/show_droplets_fuzzy.json +35 -0
  55. data/spec/fixtures/show_droplets_inactive.json +2 -0
  56. data/spec/fixtures/show_regions.json +9 -6
  57. data/spec/middleware/base_spec.rb +1 -1
  58. data/spec/middleware/check_credentials_spec.rb +1 -1
  59. data/spec/middleware/inject_client_spec.rb +29 -0
  60. data/spec/middleware/inject_configuration_spec.rb +1 -1
  61. data/spec/middleware/ssh_droplet_spec.rb +30 -7
  62. data/spec/shared/environment.rb +1 -0
  63. data/spec/spec_helper.rb +11 -4
  64. data/tugboat.gemspec +9 -7
  65. metadata +64 -33
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a65287132cbbc39cf82f8b2f38c367cfe03cce4d
4
- data.tar.gz: 7289289f9a09750c5a79500605f39086887f0804
3
+ metadata.gz: 8ae578da8803eb53d3b66af1565cde4be593b2ea
4
+ data.tar.gz: cf7ee510146edd0c175977a948614ace35708bf7
5
5
  SHA512:
6
- metadata.gz: a8c91047d99cf38350e01fc8d867a4c30b27fd437befcd5ca4542ebc02290608bc38ec7a6cbfc5b6ede7a20d1c597d800c874c7f889a76963f22e7b5152317d0
7
- data.tar.gz: fc03cb535368841410681deeaa967349030bd7fb602d4f6efa24311b1dbaceabd15531584ecc0bb85345f4cda55d2c91d76408e27fc08248671196b943e72b72
6
+ metadata.gz: 187a3f8992f56d41067988fb5091cf3879cf80064482fb1f75006daa11bcf078f081a6f7ec7cbcb3b6c44befe8ed09f12e2bf0a5967fc45e03e2fe9938752fc3
7
+ data.tar.gz: 0cee5b5abfd7ec9eaa00308dc1e38fae7132edd0187fa7a6a4b2bfa1bdb6c1909c81f9f959f06cc4796c9cca36a049f8381fbc939d03cbd955cd5a29a470138f
data/.gitignore CHANGED
@@ -10,3 +10,4 @@ coverage
10
10
  doc/*
11
11
  log/*
12
12
  pkg/*
13
+ tmp/*
data/.travis.yml CHANGED
@@ -1,8 +1,9 @@
1
+ sudo: false
1
2
  language: ruby
2
3
  rvm:
3
- - 1.8.7
4
4
  - 1.9.3
5
5
  - 2.0.0
6
- matrix:
7
- allow_failures:
8
- - rvm: 1.8.7
6
+ - 2.1.0
7
+ script:
8
+ - "bundle exec rake spec"
9
+ - "bundle exec rake features"
data/CHANGELOG.md CHANGED
@@ -1,150 +1,373 @@
1
- ## 0.2.1 (UNRELEASED)
1
+ # Change Log
2
2
 
3
+ ## [Unreleased](https://github.com/pearkes/tugboat/tree/HEAD)
3
4
 
4
- ## 0.2.0 (Feburary 15, 2014)
5
+ [Full Changelog](https://github.com/pearkes/tugboat/compare/v0.2.0...HEAD)
5
6
 
6
- FEATURES:
7
+ **Implemented enhancements:**
7
8
 
8
- - [Pierre](https://github.com/spearway) added an `info-image` and `destroy-image`
9
- command, letting you deal with your images from Tugboat. It's great. [GH-91]
10
- - [Pierre](https://github.com/spearway) also added a `rebuild` command,
11
- letting you take an existing droplet and recreate it from scratch. [GH-90]
9
+ - regions sorting [\#164](https://github.com/pearkes/tugboat/issues/164)
12
10
 
13
- IMPROVEMENTS:
11
+ - Add support to Destroy Image [\#72](https://github.com/pearkes/tugboat/issues/72)
14
12
 
15
- - [Dale](https://github.com/Vel0x) made it so fuzzy name searching
16
- is case insensitive. We wonder why we didn't do this earlier, really. [GH-88]
17
- - There is now a `--quiet/-q` flag, which makes Tugboat be silent, as it
18
- can get a little obnoxious. [GH-87]
19
- - [Andrew](https://github.com/4n3w) hooked up a `backups_enabled` option
20
- for creating droplets. [GH-82]
13
+ **Closed issues:**
21
14
 
15
+ - Add Documentation for \#106 [\#153](https://github.com/pearkes/tugboat/issues/153)
22
16
 
23
- ## 0.0.9 (December 24, 2013)
17
+ - Not creating droplet with default ssh key [\#149](https://github.com/pearkes/tugboat/issues/149)
24
18
 
25
- FEATURES:
19
+ - Default image change \(and region load\) [\#148](https://github.com/pearkes/tugboat/issues/148)
26
20
 
27
- - [Pete](https://github.com/petems) added the ability to add an
28
- ssh key to your account. [GH-64]
29
- - [Caleb](https://github.com/calebreach) gave us an easy way
30
- to pass a command through to a machine with the `-c` command. [GH-73]
21
+ - Error handling for API error. [\#138](https://github.com/pearkes/tugboat/issues/138)
31
22
 
32
- IMPROVEMENTS:
23
+ - clarification about add-key [\#136](https://github.com/pearkes/tugboat/issues/136)
33
24
 
34
- - [Andrew](https://github.com/4n3w) added a private networking option. [GH-75]
25
+ - --default option for add-key [\#135](https://github.com/pearkes/tugboat/issues/135)
35
26
 
36
- BUG FIXES:
27
+ - add-key ignores default set in ~/.tugboat [\#134](https://github.com/pearkes/tugboat/issues/134)
37
28
 
38
- - [Zo](https://github.com/obradovic) made our default image 13.04 [GH-76]
39
- - Issues with the JSON dependency in 2.0.0 were resolved. [GH-80]
29
+ - root would be a better default username [\#131](https://github.com/pearkes/tugboat/issues/131)
40
30
 
31
+ - ~ and $HOME fail for key path [\#130](https://github.com/pearkes/tugboat/issues/130)
41
32
 
42
- ## 0.0.8 (September 7, 2013)
33
+ - tugboat images \[OPTIONS\] [\#127](https://github.com/pearkes/tugboat/issues/127)
43
34
 
44
- FEATURES:
35
+ - tugboat create --help actually creates "--help" droplet [\#126](https://github.com/pearkes/tugboat/issues/126)
45
36
 
46
- - [Pete](https://github.com/petems) added configuration defaults
47
- that you can set. [GH-61]
48
- - [Pete](https://github.com/petems) added log filtering to debug output.
49
- `DEBUG=1` now gives you filtered logs, `DEBUG=2`, raw. [GH-58]
37
+ - Action to list all images [\#117](https://github.com/pearkes/tugboat/issues/117)
50
38
 
51
- IMPROVEMENTS:
39
+ - New API endpoint tests failing on Travis, work fine locally [\#109](https://github.com/pearkes/tugboat/issues/109)
52
40
 
53
- - Error messages are now caught at the Faraday level and displayed
54
- back to the user.
41
+ - Multiple DO accounts [\#106](https://github.com/pearkes/tugboat/issues/106)
55
42
 
56
- BUG FIXES:
43
+ - Tilde is not interpreted as the home directory [\#105](https://github.com/pearkes/tugboat/issues/105)
57
44
 
58
- - [Ørjan](https://github.com/blom) added a color reset on the `list`
59
- command. [GH-57]
45
+ - Tugboat Info Should Show Private IP If Exists [\#104](https://github.com/pearkes/tugboat/issues/104)
60
46
 
61
- ## 0.0.7 (August 2, 2013)
47
+ - Default image Id no longer exists [\#98](https://github.com/pearkes/tugboat/issues/98)
62
48
 
63
- IMPROVEMENTS:
49
+ - list available images [\#97](https://github.com/pearkes/tugboat/issues/97)
64
50
 
65
- - [Pete](https://github.com/petems) made it clearer to the user
66
- if they don't have any droplets or images. [GH-48], [GH-49]
51
+ - waiting for a state is inefficient [\#96](https://github.com/pearkes/tugboat/issues/96)
67
52
 
68
- BUG FIXES:
53
+ - Unable to run tugboat after installing [\#92](https://github.com/pearkes/tugboat/issues/92)
69
54
 
70
- - Fix the initial check for authorization after `authorize` [GH-41]
55
+ - Rebuild a droplet with a new image [\#66](https://github.com/pearkes/tugboat/issues/66)
71
56
 
72
- ## 0.0.6 (June 25, 2013)
57
+ **Merged pull requests:**
73
58
 
74
- FEATURES:
59
+ - PR \#165 with tests [\#166](https://github.com/pearkes/tugboat/pull/166) ([petems](https://github.com/petems))
75
60
 
76
- - [Ørjan](https://github.com/blom) added a `start` command, which
77
- let's you start a droplet. [GH-30]
78
- - [Ørjan](https://github.com/blom) added a `resize` command, which
79
- let's you resize a droplet. [GH-40]
80
- - [Ørjan](https://github.com/blom) added a `password-reset` command
81
- [GH-45]
82
- - Added a the `wait` command, allowing you to "wait" for a droplet
83
- to enter a state. [GH-46]
61
+ - Add docs for \#153 [\#159](https://github.com/pearkes/tugboat/pull/159) ([petems](https://github.com/petems))
84
62
 
85
- IMPROVEMENTS:
63
+ - Update prompt text [\#158](https://github.com/pearkes/tugboat/pull/158) ([petems](https://github.com/petems))
86
64
 
87
- - [Ørjan](https://github.com/blom) added an `--ssh-opts` flag, for the
88
- `ssh` command. [GH-38]
89
- - Droplet state is checked for some commands. For example, a droplet
90
- can't be started if it's active. [GH-31]
65
+ - Update docs to clarify add-key command [\#157](https://github.com/pearkes/tugboat/pull/157) ([petems](https://github.com/petems))
91
66
 
92
- BUG FIXES:
67
+ - Run cucumber as part of the rake default task [\#156](https://github.com/pearkes/tugboat/pull/156) ([petems](https://github.com/petems))
93
68
 
94
- - DigitalOcean changed their `image_id`'s, so the defaults for `create`
95
- were updated. [GH-39]
69
+ - Change to expand path from ssh\_key\_path [\#155](https://github.com/pearkes/tugboat/pull/155) ([petems](https://github.com/petems))
96
70
 
97
- ## 0.0.5 (May 4, 2013)
71
+ - Change default user to 'root' [\#154](https://github.com/pearkes/tugboat/pull/154) ([petems](https://github.com/petems))
98
72
 
99
- FEATURES:
73
+ - Fixes incorrect link [\#152](https://github.com/pearkes/tugboat/pull/152) ([petems](https://github.com/petems))
100
74
 
101
- - [Ørjan](https://github.com/blom) added a `regions` command, which
102
- returns a list of available DigitalOcean regions. You can specify
103
- which region to use while creating: `tugboat create foobar -r 2`. [GH-18]
104
- - [Ørjan](https://github.com/blom) added an ssh_user option to the
105
- `ssh` command. This lets you specify the user to connect as on
106
- a per-command basis, as well as in your `.tugboat`.
107
- - [Ørjan](https://github.com/blom) added a `sizes` command, which
108
- returns a list of available sizes. You can specify which size to
109
- use while creating: `tugboat create foobar -s 66` [GH-19]
110
- - [Ørjan](https://github.com/blom) added a `hard` flag to
111
- `halt` and `restart`. This cycles the Droplet's power. `tugboat restart --hard` [GH-27]
75
+ - Add config cli method [\#151](https://github.com/pearkes/tugboat/pull/151) ([petems](https://github.com/petems))
112
76
 
113
- IMPROVEMENTS:
77
+ - Change to Docker Travis [\#150](https://github.com/pearkes/tugboat/pull/150) ([petems](https://github.com/petems))
114
78
 
115
- - Tugboat now returns proper status codes for successes and failures.
116
- [GH-21]
117
- - Support for MRI 1.8.7
118
- - CTRL+C's, SIG-INT's are now caught and quietly kill Tugboat without
119
- a stacktrace.
79
+ - Change the default image and region [\#147](https://github.com/pearkes/tugboat/pull/147) ([JamshedVesuna](https://github.com/JamshedVesuna))
120
80
 
121
- ## 0.0.4 (April 23, 2013)
81
+ - Resolve the SSH key path later. [\#146](https://github.com/pearkes/tugboat/pull/146) ([Ferada](https://github.com/Ferada))
122
82
 
123
- BUG FIXES:
83
+ - Add configuration option for using the public IP. [\#145](https://github.com/pearkes/tugboat/pull/145) ([Ferada](https://github.com/Ferada))
124
84
 
125
- - Fix a syntax error caused by the order of arguments on `snapshot`.
126
- This changes the argument order and is a breaking change [GH-10].
127
- - Fix an issue with looking up a droplet by it's `--name`. A variable
128
- was changed, and because it was shadowed passed inspection.
85
+ - Create help [\#143](https://github.com/pearkes/tugboat/pull/143) ([wadtech](https://github.com/wadtech))
129
86
 
130
- IMPROVEMENTS:
87
+ - Fix typo [\#141](https://github.com/pearkes/tugboat/pull/141) ([seanhussey](https://github.com/seanhussey))
131
88
 
132
- - Added a warning for snapshotting a droplet in a non-powered off
133
- state. DigitalOcean currently doesn't return an error from their API.
134
- - Added a `--confirm` or `-c` to confirmed actions, like destroy. [GH-7]
135
- - [Ørjan](https://github.com/blom) added a `--version` command to see
136
- what version of Tugboat you're using.
137
- - Substantially more test coverage - all of the commands (except `ssh` are
138
- now integration tested. [GH-15]
89
+ - Fix API key redacting for DEBUG=2 [\#140](https://github.com/pearkes/tugboat/pull/140) ([petems](https://github.com/petems))
139
90
 
140
- FEATURES:
91
+ - Handle HTML Error responses [\#139](https://github.com/pearkes/tugboat/pull/139) ([petems](https://github.com/petems))
141
92
 
142
- - Optionally add a list of ssh_key_ids when creating a droplet. These
143
- SSH keys will automatically be added to your droplet.
144
- - Show a list of SSH keys on your account with `tugboat keys`
145
- - [Phil](https://github.com/PhilETaylor) added the ability to specify
146
- an `--ssh-port` on `tugboat ssh`, as well as set a default in your `.tugboat` [GH-13]
93
+ - Changes to URL [\#137](https://github.com/pearkes/tugboat/pull/137) ([petems](https://github.com/petems))
147
94
 
148
- ## 0.0.3 (April 15, 2013)
95
+ - fix API URL in cli.rb [\#129](https://github.com/pearkes/tugboat/pull/129) ([brandondrew](https://github.com/brandondrew))
149
96
 
150
- Initial release.
97
+ - Adds slugs to regions list. [\#121](https://github.com/pearkes/tugboat/pull/121) ([blakelapierre](https://github.com/blakelapierre))
98
+
99
+ - Add spec around confirming action with user [\#116](https://github.com/pearkes/tugboat/pull/116) ([petems](https://github.com/petems))
100
+
101
+ - Transpec fixes [\#114](https://github.com/pearkes/tugboat/pull/114) ([petems](https://github.com/petems))
102
+
103
+ - Trying to get that Coveralls % higher... [\#113](https://github.com/pearkes/tugboat/pull/113) ([petems](https://github.com/petems))
104
+
105
+ - Specs for fuzzy matching of images [\#112](https://github.com/pearkes/tugboat/pull/112) ([petems](https://github.com/petems))
106
+
107
+ - Fix error in 'authorize\_cli\_spec' [\#111](https://github.com/pearkes/tugboat/pull/111) ([petems](https://github.com/petems))
108
+
109
+ - Enable simplecov HTML formatter and Coveralls [\#110](https://github.com/pearkes/tugboat/pull/110) ([petems](https://github.com/petems))
110
+
111
+ - Change link for api [\#108](https://github.com/pearkes/tugboat/pull/108) ([petems](https://github.com/petems))
112
+
113
+ - Display + SSH to private IP [\#107](https://github.com/pearkes/tugboat/pull/107) ([WietseWind](https://github.com/WietseWind))
114
+
115
+ - Update the link to get v1 API keys in the README. [\#103](https://github.com/pearkes/tugboat/pull/103) ([wearhere](https://github.com/wearhere))
116
+
117
+ - Change the default image [\#100](https://github.com/pearkes/tugboat/pull/100) ([blom](https://github.com/blom))
118
+
119
+ - Add `\[OPTIONS\]` to images description [\#99](https://github.com/pearkes/tugboat/pull/99) ([blom](https://github.com/blom))
120
+
121
+ - Add MRI 1.9.2 and 2.1.0 to .travis.yml [\#94](https://github.com/pearkes/tugboat/pull/94) ([blom](https://github.com/blom))
122
+
123
+ - No more 1.8.7 [\#93](https://github.com/pearkes/tugboat/pull/93) ([blom](https://github.com/blom))
124
+
125
+ - added sort\_by when listing regions [\#165](https://github.com/pearkes/tugboat/pull/165) ([elliotthilaire](https://github.com/elliotthilaire))
126
+
127
+ - region one unavailable on some clients, use NYC 2 [\#144](https://github.com/pearkes/tugboat/pull/144) ([Thetoxicarcade](https://github.com/Thetoxicarcade))
128
+
129
+ - Load config file from current directory, if not exit load from defaults [\#123](https://github.com/pearkes/tugboat/pull/123) ([tg0](https://github.com/tg0))
130
+
131
+ - improves droplets list/info prints [\#115](https://github.com/pearkes/tugboat/pull/115) ([petems](https://github.com/petems))
132
+
133
+ - Improves droplets list/info prints [\#77](https://github.com/pearkes/tugboat/pull/77) ([nofxx](https://github.com/nofxx))
134
+
135
+ ## [v0.2.0](https://github.com/pearkes/tugboat/tree/v0.2.0) (2014-02-15)
136
+
137
+ [Full Changelog](https://github.com/pearkes/tugboat/compare/v0.0.9...v0.2.0)
138
+
139
+ **Implemented enhancements:**
140
+
141
+ - Add a --quiet option [\#86](https://github.com/pearkes/tugboat/issues/86)
142
+
143
+ - Add to homebrew? [\#83](https://github.com/pearkes/tugboat/issues/83)
144
+
145
+ **Closed issues:**
146
+
147
+ - Droplet create with backups enabled. [\#89](https://github.com/pearkes/tugboat/issues/89)
148
+
149
+ - certificate verify failed [\#84](https://github.com/pearkes/tugboat/issues/84)
150
+
151
+ - Destroy data by default... [\#81](https://github.com/pearkes/tugboat/issues/81)
152
+
153
+ **Merged pull requests:**
154
+
155
+ - destroy and info command [\#91](https://github.com/pearkes/tugboat/pull/91) ([PierreFrisch](https://github.com/PierreFrisch))
156
+
157
+ - Add rebuild command [\#90](https://github.com/pearkes/tugboat/pull/90) ([PierreFrisch](https://github.com/PierreFrisch))
158
+
159
+ - Fuzzy name searching is now case insensitive [\#88](https://github.com/pearkes/tugboat/pull/88) ([Vel0x](https://github.com/Vel0x))
160
+
161
+ - global: add a -q/--quiet flag [\#87](https://github.com/pearkes/tugboat/pull/87) ([pearkes](https://github.com/pearkes))
162
+
163
+ - Add backups\_enabled option on droplet creation \(-b true\) [\#82](https://github.com/pearkes/tugboat/pull/82) ([4n3w](https://github.com/4n3w))
164
+
165
+ ## [v0.0.9](https://github.com/pearkes/tugboat/tree/v0.0.9) (2013-12-24)
166
+
167
+ [Full Changelog](https://github.com/pearkes/tugboat/compare/v0.0.8...v0.0.9)
168
+
169
+ **Fixed bugs:**
170
+
171
+ - Cannot destroy droplet [\#67](https://github.com/pearkes/tugboat/issues/67)
172
+
173
+ **Closed issues:**
174
+
175
+ - Unable to authorize tugboat [\#79](https://github.com/pearkes/tugboat/issues/79)
176
+
177
+ - Problem with SSL certificate [\#70](https://github.com/pearkes/tugboat/issues/70)
178
+
179
+ - Option to manage SSH keys [\#69](https://github.com/pearkes/tugboat/issues/69)
180
+
181
+ - Enable Private Networking [\#68](https://github.com/pearkes/tugboat/issues/68)
182
+
183
+ - Release 0.0.8 [\#65](https://github.com/pearkes/tugboat/issues/65)
184
+
185
+ - Add SSH key to account [\#60](https://github.com/pearkes/tugboat/issues/60)
186
+
187
+ **Merged pull requests:**
188
+
189
+ - require json at the top to avoid 2.0.0 issues [\#80](https://github.com/pearkes/tugboat/pull/80) ([pearkes](https://github.com/pearkes))
190
+
191
+ - updated default image from 12.04 x64 to 13.04 x64 [\#76](https://github.com/pearkes/tugboat/pull/76) ([obradovic](https://github.com/obradovic))
192
+
193
+ - Add private networking boolean option \(Ex. tugboat create -p true mydrop... [\#75](https://github.com/pearkes/tugboat/pull/75) ([4n3w](https://github.com/4n3w))
194
+
195
+ - Added ssh option for executing commands [\#73](https://github.com/pearkes/tugboat/pull/73) ([calebreach](https://github.com/calebreach))
196
+
197
+ - Upload SSH Key [\#64](https://github.com/pearkes/tugboat/pull/64) ([petems](https://github.com/petems))
198
+
199
+ - added optional private networking to create [\#74](https://github.com/pearkes/tugboat/pull/74) ([obradovic](https://github.com/obradovic))
200
+
201
+ ## [v0.0.8](https://github.com/pearkes/tugboat/tree/v0.0.8) (2013-09-07)
202
+
203
+ [Full Changelog](https://github.com/pearkes/tugboat/compare/v0.0.7...v0.0.8)
204
+
205
+ **Implemented enhancements:**
206
+
207
+ - Add ability to set default region [\#56](https://github.com/pearkes/tugboat/issues/56)
208
+
209
+ - Release 0.0.7 [\#54](https://github.com/pearkes/tugboat/issues/54)
210
+
211
+ - Handle 401s more gracefully... [\#53](https://github.com/pearkes/tugboat/issues/53)
212
+
213
+ - Scrub API Keys from Logs [\#42](https://github.com/pearkes/tugboat/issues/42)
214
+
215
+ **Fixed bugs:**
216
+
217
+ - Handle 401s more gracefully... [\#53](https://github.com/pearkes/tugboat/issues/53)
218
+
219
+ **Closed issues:**
220
+
221
+ - "undefined method `each' for nil:NilClass" in every endpoint [\#52](https://github.com/pearkes/tugboat/issues/52)
222
+
223
+ **Merged pull requests:**
224
+
225
+ - Faraday: Improve Error Messages [\#62](https://github.com/pearkes/tugboat/pull/62) ([pearkes](https://github.com/pearkes))
226
+
227
+ - Default droplet options [\#61](https://github.com/pearkes/tugboat/pull/61) ([petems](https://github.com/petems))
228
+
229
+ - Custom logging to filter logs [\#58](https://github.com/pearkes/tugboat/pull/58) ([petems](https://github.com/petems))
230
+
231
+ - Reset colors [\#57](https://github.com/pearkes/tugboat/pull/57) ([blom](https://github.com/blom))
232
+
233
+ - Custom faraday and verify method [\#55](https://github.com/pearkes/tugboat/pull/55) ([petems](https://github.com/petems))
234
+
235
+ ## [v0.0.7](https://github.com/pearkes/tugboat/tree/v0.0.7) (2013-07-10)
236
+
237
+ [Full Changelog](https://github.com/pearkes/tugboat/compare/v0.0.6...v0.0.7)
238
+
239
+ **Closed issues:**
240
+
241
+ - New release? [\#47](https://github.com/pearkes/tugboat/issues/47)
242
+
243
+ - tugboat authorize says I must run... authorize [\#41](https://github.com/pearkes/tugboat/issues/41)
244
+
245
+ **Merged pull requests:**
246
+
247
+ - Add response for no images found \(my-images filter\) [\#49](https://github.com/pearkes/tugboat/pull/49) ([petems](https://github.com/petems))
248
+
249
+ - Add response for no droplets found [\#48](https://github.com/pearkes/tugboat/pull/48) ([petems](https://github.com/petems))
250
+
251
+ ## [v0.0.6](https://github.com/pearkes/tugboat/tree/v0.0.6) (2013-06-25)
252
+
253
+ [Full Changelog](https://github.com/pearkes/tugboat/compare/v0.0.5...v0.0.6)
254
+
255
+ **Implemented enhancements:**
256
+
257
+ - "Wait" Tool [\#44](https://github.com/pearkes/tugboat/issues/44)
258
+
259
+ **Closed issues:**
260
+
261
+ - Error: Faraday::Error::ParsingError n-1.6.7/lib/json/common.rb:149:in `parse': 757 [\#37](https://github.com/pearkes/tugboat/issues/37)
262
+
263
+ - Release 0.0.5 [\#29](https://github.com/pearkes/tugboat/issues/29)
264
+
265
+ **Merged pull requests:**
266
+
267
+ - Wait [\#46](https://github.com/pearkes/tugboat/pull/46) ([pearkes](https://github.com/pearkes))
268
+
269
+ - Add a password reset command [\#45](https://github.com/pearkes/tugboat/pull/45) ([blom](https://github.com/blom))
270
+
271
+ - README: bring command documentation up to date [\#43](https://github.com/pearkes/tugboat/pull/43) ([pearkes](https://github.com/pearkes))
272
+
273
+ - Add a resize command [\#40](https://github.com/pearkes/tugboat/pull/40) ([blom](https://github.com/blom))
274
+
275
+ - Update the defaults for droplet creation [\#39](https://github.com/pearkes/tugboat/pull/39) ([pearkes](https://github.com/pearkes))
276
+
277
+ - Add a --ssh-opts option to the ssh command [\#38](https://github.com/pearkes/tugboat/pull/38) ([blom](https://github.com/blom))
278
+
279
+ - Add some tests for the help command [\#36](https://github.com/pearkes/tugboat/pull/36) ([blom](https://github.com/blom))
280
+
281
+ - Dry up the specs a bit [\#35](https://github.com/pearkes/tugboat/pull/35) ([blom](https://github.com/blom))
282
+
283
+ - Adjust the Coveralls configuration [\#34](https://github.com/pearkes/tugboat/pull/34) ([blom](https://github.com/blom))
284
+
285
+ - Run specs in a random order [\#33](https://github.com/pearkes/tugboat/pull/33) ([blom](https://github.com/blom))
286
+
287
+ - Add coveralls.io support [\#32](https://github.com/pearkes/tugboat/pull/32) ([pearkes](https://github.com/pearkes))
288
+
289
+ - Droplet State Checks [\#31](https://github.com/pearkes/tugboat/pull/31) ([pearkes](https://github.com/pearkes))
290
+
291
+ - Add a start command [\#30](https://github.com/pearkes/tugboat/pull/30) ([blom](https://github.com/blom))
292
+
293
+ ## [v0.0.5](https://github.com/pearkes/tugboat/tree/v0.0.5) (2013-05-04)
294
+
295
+ [Full Changelog](https://github.com/pearkes/tugboat/compare/v0.0.4...v0.0.5)
296
+
297
+ **Fixed bugs:**
298
+
299
+ - Return Proper Exit Codes [\#3](https://github.com/pearkes/tugboat/issues/3)
300
+
301
+ **Closed issues:**
302
+
303
+ - pass through ssh commands [\#26](https://github.com/pearkes/tugboat/issues/26)
304
+
305
+ - Supporting MRI 1.8.7 [\#20](https://github.com/pearkes/tugboat/issues/20)
306
+
307
+ - Add a command to list regions [\#17](https://github.com/pearkes/tugboat/issues/17)
308
+
309
+ **Merged pull requests:**
310
+
311
+ - Stub out Kernel.exec for testing the options sent to SSH. [\#28](https://github.com/pearkes/tugboat/pull/28) ([pearkes](https://github.com/pearkes))
312
+
313
+ - Add a power option to halt and restart [\#27](https://github.com/pearkes/tugboat/pull/27) ([blom](https://github.com/blom))
314
+
315
+ - Add an initial spec for the ssh command [\#24](https://github.com/pearkes/tugboat/pull/24) ([blom](https://github.com/blom))
316
+
317
+ - Add an ssh\_user option to the ssh command [\#23](https://github.com/pearkes/tugboat/pull/23) ([blom](https://github.com/blom))
318
+
319
+ - Support MRI 1.8.7 [\#22](https://github.com/pearkes/tugboat/pull/22) ([blom](https://github.com/blom))
320
+
321
+ - Status Codes [\#21](https://github.com/pearkes/tugboat/pull/21) ([pearkes](https://github.com/pearkes))
322
+
323
+ - Add a sizes command [\#19](https://github.com/pearkes/tugboat/pull/19) ([blom](https://github.com/blom))
324
+
325
+ - Add a regions command [\#18](https://github.com/pearkes/tugboat/pull/18) ([blom](https://github.com/blom))
326
+
327
+ - Add .travis.yml [\#16](https://github.com/pearkes/tugboat/pull/16) ([blom](https://github.com/blom))
328
+
329
+ - Add a power cycle command [\#25](https://github.com/pearkes/tugboat/pull/25) ([blom](https://github.com/blom))
330
+
331
+ ## [v0.0.4](https://github.com/pearkes/tugboat/tree/v0.0.4) (2013-04-23)
332
+
333
+ [Full Changelog](https://github.com/pearkes/tugboat/compare/v0.0.3...v0.0.4)
334
+
335
+ **Implemented enhancements:**
336
+
337
+ - Disable Confirmations Flag [\#7](https://github.com/pearkes/tugboat/issues/7)
338
+
339
+ - Add command to check for version [\#2](https://github.com/pearkes/tugboat/issues/2)
340
+
341
+ **Closed issues:**
342
+
343
+ - Allow configurable SSH port [\#12](https://github.com/pearkes/tugboat/issues/12)
344
+
345
+ - cli.rb:175: syntax error, unexpected '\)', expecting '=' \(SyntaxError\) [\#10](https://github.com/pearkes/tugboat/issues/10)
346
+
347
+ - Destroy droplet without confirmation [\#9](https://github.com/pearkes/tugboat/issues/9)
348
+
349
+ - Unable to authorise [\#8](https://github.com/pearkes/tugboat/issues/8)
350
+
351
+ **Merged pull requests:**
352
+
353
+ - All of the specs [\#15](https://github.com/pearkes/tugboat/pull/15) ([pearkes](https://github.com/pearkes))
354
+
355
+ - Add a version command [\#14](https://github.com/pearkes/tugboat/pull/14) ([blom](https://github.com/blom))
356
+
357
+ - Allow options for custom ssh port [\#13](https://github.com/pearkes/tugboat/pull/13) ([PhilETaylor](https://github.com/PhilETaylor))
358
+
359
+ - fix for SyntaxError [\#11](https://github.com/pearkes/tugboat/pull/11) ([PhilETaylor](https://github.com/PhilETaylor))
360
+
361
+ ## [v0.0.3](https://github.com/pearkes/tugboat/tree/v0.0.3) (2013-04-15)
362
+
363
+ [Full Changelog](https://github.com/pearkes/tugboat/compare/v0.0.2...v0.0.3)
364
+
365
+ **Fixed bugs:**
366
+
367
+ - Specifying ID on FindDroplet Breaks [\#1](https://github.com/pearkes/tugboat/issues/1)
368
+
369
+ ## [v0.0.2](https://github.com/pearkes/tugboat/tree/v0.0.2) (2013-04-14)
370
+
371
+
372
+
373
+ \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*