kitchen-digitalocean 0.9.5 → 0.9.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 41d6c0d3d8ac28c78614161f6cade375d4cc7db2
4
- data.tar.gz: 2e845d50c2c8321cdebc379a40643feeafe4eed5
3
+ metadata.gz: b70876d187f3362289af3456f71a1e31b268fee0
4
+ data.tar.gz: 2d440b38f1a7fb6a42986792023b5ffd7642f507
5
5
  SHA512:
6
- metadata.gz: cca084e2f20bc441eac31e425c549669cf08db93780fe171cad9e421b5435684c0bf45a79db28c2384c058d751ae6bbf1088a8bd83e1cd6f15b12da3d61afca7
7
- data.tar.gz: 47da3af06e349b6cb5fdaa3919a5a38b087003a77a612163ef4734525e1dbea287f9127e284d8cc6390ecb67b474d22c511cd28cc7bedf0f987d5ad83a2f591f
6
+ metadata.gz: 14fae95e6efc2f644e44f9022eed7c944216d60de720fc65b77bd3a26b54aa5e701a63ea5a638178166e46732db80b561c2886ed8f7ebda6e69715b1dee9c3d9
7
+ data.tar.gz: ea678c283970baaa67f815d910b357741b9d5f38728038db712a52181e58509234d5caba86b0931a4d0a1d78d74a4da05e56371275862280d11b76de6202c16b
@@ -2,8 +2,13 @@
2
2
  language: ruby
3
3
  rvm:
4
4
  - 2.1
5
+ before_install:
6
+ - gem install bundler
5
7
  bundler_args: --jobs 7
6
8
  gemfile:
7
9
  - Gemfile
10
+ branches:
11
+ only:
12
+ - master
8
13
 
9
14
  # vim: ai et ts=2 sts=2 sw=2 ft=yaml
@@ -1,3 +1,7 @@
1
+ # 0.9.6 / 2017-07-27
2
+
3
+ * [@martinisoft] Bump droplet_kit to latest 2.0 series release
4
+
1
5
  # 0.9.5 / 2015-12-14
2
6
 
3
7
  * This release fixes the slugs I accidentally broke in 0.9.4.
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
- [![Gem Version](https://badge.fury.io/rb/kitchen-digitalocean.png)](http://badge.fury.io/rb/kitchen-digitalocean)
1
+ [![Gem Version](https://badge.fury.io/rb/kitchen-digitalocean.svg)](http://badge.fury.io/rb/kitchen-digitalocean)
2
2
  [![Build Status](https://travis-ci.org/test-kitchen/kitchen-digitalocean.png?branch=master)](https://travis-ci.org/test-kitchen/kitchen-digitalocean)
3
3
  [![Code Climate](https://codeclimate.com/github/test-kitchen/kitchen-digitalocean.png)](https://codeclimate.com/github/test-kitchen/kitchen-digitalocean)
4
4
  [![Coverage Status](https://coveralls.io/repos/test-kitchen/kitchen-digitalocean/badge.svg?branch=master)](https://coveralls.io/r/test-kitchen/kitchen-digitalocean?branch=master)
5
- [![Dependency Status](https://gemnasium.com/test-kitchen/kitchen-digitalocean.png)](https://gemnasium.com/test-kitchen/kitchen-digitalocean)
5
+ [![Dependency Status](https://gemnasium.com/test-kitchen/kitchen-digitalocean.svg)](https://gemnasium.com/test-kitchen/kitchen-digitalocean)
6
6
 
7
7
  # Kitchen::Digitalocean
8
8
 
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
19
19
  spec.require_paths = ['lib']
20
20
 
21
21
  spec.add_dependency 'test-kitchen', '~> 1.2'
22
- spec.add_dependency 'droplet_kit', '~> 1.0'
22
+ spec.add_dependency 'droplet_kit', '~> 2.0'
23
23
 
24
24
  spec.add_development_dependency 'bundler', '~> 1.0'
25
25
  spec.add_development_dependency 'rake', '~> 10.0'
@@ -186,7 +186,8 @@ module Kitchen
186
186
  'ubuntu-12.04' => 'ubuntu-12-04-x64',
187
187
  'ubuntu-14.04' => 'ubuntu-14-04-x64',
188
188
  'ubuntu-15.04' => 'ubuntu-15-04-x64',
189
- 'ubuntu-15.10' => 'ubuntu-15-10-x64'
189
+ 'ubuntu-15.10' => 'ubuntu-15-10-x64',
190
+ 'ubuntu-16.04' => 'ubuntu-16-04-x64',
190
191
  }
191
192
  end
192
193
  end
@@ -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.9.5'
22
+ DIGITALOCEAN_VERSION = '0.9.6'
23
23
  end
24
24
  end
25
25
 
@@ -22,11 +22,11 @@ require 'simplecov'
22
22
  require 'simplecov-console'
23
23
  require 'coveralls'
24
24
 
25
- SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
25
+ SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new([
26
26
  Coveralls::SimpleCov::Formatter,
27
27
  SimpleCov::Formatter::HTMLFormatter,
28
28
  SimpleCov::Formatter::Console
29
- ]
29
+ ])
30
30
  SimpleCov.start
31
31
 
32
32
  WebMock.disable_net_connect!(allow_localhost: true)
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.9.5
4
+ version: 0.9.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Greg Fitzgerald
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-12-14 00:00:00.000000000 Z
11
+ date: 2017-07-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: test-kitchen
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '1.0'
33
+ version: '2.0'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '1.0'
40
+ version: '2.0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: bundler
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -222,7 +222,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
222
222
  version: '0'
223
223
  requirements: []
224
224
  rubyforge_project:
225
- rubygems_version: 2.5.1
225
+ rubygems_version: 2.6.12
226
226
  signing_key:
227
227
  specification_version: 4
228
228
  summary: A Test Kitchen Driver for Digital Ocean