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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7162a19c2408c4f1f1f965120d34482a0946a3e4
4
- data.tar.gz: 6bc37a3e482c27595ffa155f0dcd5356ac534f27
3
+ metadata.gz: 0a7045fdb60287943a239cf741000833fb00721a
4
+ data.tar.gz: 871aea1076042ce89a526cd395c261d37ac48776
5
5
  SHA512:
6
- metadata.gz: a90f4f5bc4ea67e76f04d4bf116d4a598f30a347339e9d2c063dddcbacc78b6573fec9f72f4c4975a59d8ac78b2ac066d4de3517e3a8741f7ea9ca6983ce6e48
7
- data.tar.gz: 51d39d58131da506a022f4106df0fa8d283f48e642f1d0f67df7850bd0803d52c21860573387f94b007fdaddfcc30430ba3ab2d7bde474aa2638665e6ce864b4
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
@@ -43,7 +43,7 @@ At minimum, you'll need to tell test-kitchen to use the digitalocean driver.
43
43
  ```ruby
44
44
  ---
45
45
  driver:
46
- - name: digitalocean
46
+ name: digitalocean
47
47
  platforms:
48
48
  - name: ubuntu-12-10-x64
49
49
  ```
data/Rakefile CHANGED
@@ -22,6 +22,6 @@ end
22
22
  desc 'Run RSpec unit tests'
23
23
  RSpec::Core::RakeTask.new(:spec)
24
24
 
25
- task default: [:cane, :rubocop, :loc, :spec]
25
+ task default: [:rubocop, :loc, :spec]
26
26
 
27
27
  # vim: ai et ts=2 sts=2 sw=2 ft=ruby fdm=marker
@@ -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
  )
@@ -19,7 +19,7 @@
19
19
  module Kitchen
20
20
  module Driver
21
21
  # Version string for Digital Ocean Kitchen driver
22
- DIGITALOCEAN_VERSION = '0.8.0'
22
+ DIGITALOCEAN_VERSION = '0.8.1'
23
23
  end
24
24
  end
25
25
 
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.0
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-08-29 00:00:00.000000000 Z
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.1
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