kitchen-vagrant 1.3.1 → 1.3.2

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
- SHA1:
3
- metadata.gz: 13a94d4b20e36a904afba56b4877879606df7f12
4
- data.tar.gz: 67e2b34a34db6a63aaf70fb53febdddedcf1dd74
2
+ SHA256:
3
+ metadata.gz: ddba86d79279d14df33f8c73fc277107be1339420766c69bb79df7204b16abc5
4
+ data.tar.gz: 4c0173401f598321a4373814a2fa3aae368c3a583ab7d6edd7a344b87c07de03
5
5
  SHA512:
6
- metadata.gz: 7efbac16a93a962998fb038f17ee2612bcdd19a542e88de8be4f4cc08cc44db0902636b735727e73358b8bbf85d2ddded00373be2a2f7bfe75dbb442621d1a31
7
- data.tar.gz: 2512b926ac68bac3311ef5358f02d04dcb0358eb459ea2aa44de3b62b3793e5161ee4a5b2bc739ff547258597df12c831d18d9b1f873dce3a4b96ff50d43cab2
6
+ metadata.gz: e8f1168da31ab90b5f06d76ea897658ed115093e5e321c357a18c58c0554caffe18d66b187d434c4db2ab393114869eae694498f3d47c842d304414a5ce83ee5
7
+ data.tar.gz: 90cacf14ed9d38b306f71a0b95e171eb9a483338a579fac31b1ede1f3ea09559ad5ce47cfbf8db2a793644e83443d1e66b833c8ef65033ffe3cc7ac96804cab6
data/.gitignore CHANGED
File without changes
data/.rspec CHANGED
File without changes
@@ -1,8 +1,9 @@
1
1
  language: ruby
2
2
 
3
3
  rvm:
4
- - 2.3.1
5
- - 2.2.5
4
+ - 2.3.7
5
+ - 2.4.4
6
+ - 2.5.1
6
7
  - ruby-head
7
8
 
8
9
  bundler_args: --without guard
@@ -17,9 +18,6 @@ branches:
17
18
  only:
18
19
  - master
19
20
 
20
- notifications:
21
- irc: "chat.freenode.net#kitchenci"
22
-
23
21
  addons:
24
22
  code_climate:
25
23
  repo_token:
@@ -1,5 +1,14 @@
1
1
  # Change Log
2
2
 
3
+ ## [v1.3.2](https://github.com/test-kitchen/kitchen-vagrant/tree/v1.3.2) (2018-04-23)
4
+ [Full Changelog](https://github.com/test-kitchen/kitchen-vagrant/compare/v1.3.1...v1.3.2)
5
+
6
+ **Merged pull requests:**
7
+
8
+ - Fixing \#349 - allow bento/hardenedbsd [\#355](https://github.com/test-kitchen/kitchen-vagrant/pull/355) ([cheeseplus](https://github.com/cheeseplus))
9
+ - Updating travis config [\#354](https://github.com/test-kitchen/kitchen-vagrant/pull/354) ([cheeseplus](https://github.com/cheeseplus))
10
+ - Hyper-V: Ensure default switch name is always wrapped in quotes [\#345](https://github.com/test-kitchen/kitchen-vagrant/pull/345) ([stuartpreston](https://github.com/stuartpreston))
11
+
3
12
  ## [v1.3.1](https://github.com/test-kitchen/kitchen-vagrant/tree/v1.3.1) (2018-02-20)
4
13
  [Full Changelog](https://github.com/test-kitchen/kitchen-vagrant/compare/v1.3.0...v1.3.1)
5
14
 
data/Gemfile CHANGED
File without changes
data/Guardfile CHANGED
File without changes
data/LICENSE CHANGED
File without changes
data/README.md CHANGED
File without changes
data/Rakefile CHANGED
File without changes
@@ -7,7 +7,7 @@ require "English"
7
7
  Gem::Specification.new do |gem|
8
8
  gem.name = "kitchen-vagrant"
9
9
  gem.version = Kitchen::Driver::VAGRANT_VERSION
10
- gem.license = "Apache 2.0"
10
+ gem.license = "Apache-2.0"
11
11
  gem.authors = ["Fletcher Nichol"]
12
12
  gem.email = ["fnichol@nichol.ca"]
13
13
  gem.description = "Kitchen::Driver::Vagrant - A Vagrant Driver for Test Kitchen."
File without changes
@@ -234,7 +234,7 @@ module Kitchen
234
234
  # box
235
235
  # @api private
236
236
  def bento_box?(name)
237
- name =~ /^(centos|debian|fedora|freebsd|opensuse|ubuntu|oracle)-/
237
+ name =~ /^(centos|debian|fedora|freebsd|opensuse|ubuntu|oracle|hardenedbsd)-/
238
238
  end
239
239
 
240
240
  # Returns whether or not the we expect the box to work with shared folders
@@ -354,7 +354,7 @@ module Kitchen
354
354
  if config[:provider] == "hyperv" && config[:network].empty?
355
355
  config[:network].push([
356
356
  "public_network",
357
- "bridge: #{hyperv_switch}",
357
+ "bridge: \"#{hyperv_switch}\"",
358
358
  ])
359
359
  end
360
360
  end
@@ -21,6 +21,6 @@ module Kitchen
21
21
  module Driver
22
22
 
23
23
  # Version string for Vagrant Kitchen driver
24
- VAGRANT_VERSION = "1.3.1"
24
+ VAGRANT_VERSION = "1.3.2"
25
25
  end
26
26
  end
@@ -161,7 +161,7 @@ describe Kitchen::Driver::Vagrant do
161
161
  ]
162
162
  end
163
163
 
164
- %w{centos debian fedora opensuse ubuntu oracle freebsd}.each do |name|
164
+ %w{centos debian fedora opensuse ubuntu oracle freebsd hardenedbsd}.each do |name|
165
165
 
166
166
  context "for known bento platform names starting with #{name}" do
167
167
 
File without changes
File without changes
File without changes
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kitchen-vagrant
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.1
4
+ version: 1.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fletcher Nichol
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-02-20 00:00:00.000000000 Z
11
+ date: 2018-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: test-kitchen
@@ -134,7 +134,7 @@ files:
134
134
  - templates/Vagrantfile.erb
135
135
  homepage: https://github.com/test-kitchen/kitchen-vagrant/
136
136
  licenses:
137
- - Apache 2.0
137
+ - Apache-2.0
138
138
  metadata: {}
139
139
  post_install_message:
140
140
  rdoc_options: []
@@ -152,7 +152,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
152
152
  version: '0'
153
153
  requirements: []
154
154
  rubyforge_project:
155
- rubygems_version: 2.6.13
155
+ rubygems_version: 2.7.6
156
156
  signing_key:
157
157
  specification_version: 4
158
158
  summary: Kitchen::Driver::Vagrant - A Vagrant Driver for Test Kitchen.