kitchen-digitalocean 0.8.0 → 0.8.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 +6 -0
- data/README.md +1 -1
- data/Rakefile +1 -1
- data/lib/kitchen/driver/digitalocean.rb +2 -2
- data/lib/kitchen/driver/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: 0a7045fdb60287943a239cf741000833fb00721a
|
|
4
|
+
data.tar.gz: 871aea1076042ce89a526cd395c261d37ac48776
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 15d6ebccf19a6397fe2a04cc4fb55af85415644685c2f2c971c052a2bc20d44a2a3357a54ffda8fc3964290557f02dee35514066bc999613d0a5d8a97762abbb
|
|
7
|
+
data.tar.gz: e26cd240b32e1be3c9bdc36a37a66973ebc1d0b934a425382e15d217e674773ca6a643f07860f5330ece17fe7f24c5a47ea0cde8a20501c831b7e8c5bdd6ac8b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
# 0.8.1 / 2014-10-13
|
|
2
|
+
|
|
3
|
+
* [@sarkis](https://github.com/sarkis) [PR #32] fix driver config example
|
|
4
|
+
* [@sarkis](https://github.com/sarkis) [PR #31] make sure there are no underscores in hostname
|
|
5
|
+
* [@sarkis](https://github.com/sarkis) [PR #30] properly split ssh key ids
|
|
6
|
+
|
|
1
7
|
# 0.8.0 / 2014-8-21
|
|
2
8
|
|
|
3
9
|
* [@RoboticCheese](https://github.com/RoboticCheese) [PR #25] Sanitize default names, limit to 63 chars
|
data/README.md
CHANGED
data/Rakefile
CHANGED
|
@@ -97,7 +97,7 @@ module Kitchen
|
|
|
97
97
|
Etc.getlogin.gsub(/\W/, '')[0..14],
|
|
98
98
|
Socket.gethostname.gsub(/\W/, '')[0..22],
|
|
99
99
|
Array.new(7) { rand(36).to_s(36) }.join
|
|
100
|
-
].join('-')
|
|
100
|
+
].join('-').gsub(/_/, '-')
|
|
101
101
|
end
|
|
102
102
|
|
|
103
103
|
private
|
|
@@ -116,7 +116,7 @@ module Kitchen
|
|
|
116
116
|
region: config[:region],
|
|
117
117
|
image: config[:image],
|
|
118
118
|
size: config[:size],
|
|
119
|
-
ssh_keys: config[:ssh_key_ids].split(
|
|
119
|
+
ssh_keys: config[:ssh_key_ids].split(/, ?/),
|
|
120
120
|
private_networking: config[:private_networking],
|
|
121
121
|
ipv6: config[:ipv6]
|
|
122
122
|
)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kitchen-digitalocean
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Greg Fitzgerald
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-10-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: test-kitchen
|
|
@@ -221,7 +221,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
221
221
|
version: '0'
|
|
222
222
|
requirements: []
|
|
223
223
|
rubyforge_project:
|
|
224
|
-
rubygems_version: 2.4.
|
|
224
|
+
rubygems_version: 2.4.2
|
|
225
225
|
signing_key:
|
|
226
226
|
specification_version: 4
|
|
227
227
|
summary: A Test Kitchen Driver for Digital Ocean
|