vagrant-digitalocean 0.9.2 → 0.9.3
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/README.md +1 -1
- data/lib/vagrant-digitalocean/helpers/client.rb +3 -0
- data/lib/vagrant-digitalocean/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 328599e598823dda8d867e8565396f0d16bf2fc4
|
|
4
|
+
data.tar.gz: a188ff03c7fa33f0ae1dc8512062f59da61fab2d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 86dde945c781282ace74f3ec4303546900a4f0b662b15151a77cb4db69cff84d87d8a72435035be62d27cd858999dceef568c34bdc57654a817ea751d9ec9902
|
|
7
|
+
data.tar.gz: fc5c30b7134c016853e37d043e9ce79ed8b04636234a17aee8cf2d9a6c69445d7ad9096d76f39f0acbdf8ffd6747260607d3779e9d32145cd27ac4916fc3f62c
|
data/README.md
CHANGED
|
@@ -178,7 +178,7 @@ To release a new version of vagrant-digitalocean you will need to do the followi
|
|
|
178
178
|
|
|
179
179
|
*(only contributors of the GitHub repo and owners of the project at RubyGems will have rights to do this)*
|
|
180
180
|
|
|
181
|
-
1. First, bump the version in ~/lib/vagrant-digitalocean/version.rb:
|
|
181
|
+
1. First, bump, commit, and push the version in ~/lib/vagrant-digitalocean/version.rb:
|
|
182
182
|
* Follow [Semantic Versioning](http://semver.org/).
|
|
183
183
|
2. Then, create a matching GitHub Release (this will also create a tag):
|
|
184
184
|
* Preface the version number with a `v`.
|
|
@@ -63,6 +63,9 @@ module VagrantPlugins
|
|
|
63
63
|
new_path = path.split("?")[0]
|
|
64
64
|
next_result = self.request("#{new_path}?#{uri.query}")
|
|
65
65
|
req_target = new_path.split("/")[-1]
|
|
66
|
+
if req_target == 'keys'
|
|
67
|
+
req_target = 'ssh_keys'
|
|
68
|
+
end
|
|
66
69
|
body["#{req_target}"].concat(next_result["#{req_target}"])
|
|
67
70
|
end
|
|
68
71
|
rescue JSON::ParserError => e
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-digitalocean
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- John Bender
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2018-
|
|
12
|
+
date: 2018-04-17 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: faraday
|
|
@@ -118,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
118
118
|
version: '0'
|
|
119
119
|
requirements: []
|
|
120
120
|
rubyforge_project:
|
|
121
|
-
rubygems_version: 2.
|
|
121
|
+
rubygems_version: 2.5.2
|
|
122
122
|
signing_key:
|
|
123
123
|
specification_version: 4
|
|
124
124
|
summary: Enables Vagrant to manage DigitalOcean droplets
|