kitchen-microwave 0.2.0 → 0.2.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
  SHA256:
3
- metadata.gz: 8daea8eea5f3283e57906adbe4bd3eabcc37a0d1a885676682dba0ed9313fbbd
4
- data.tar.gz: 020acf6fafbe4d98bd960908322d926b1642f215fce63d4355ccad6cb8d3112e
3
+ metadata.gz: db9e93c87c7edc047a04214137600f56826c56805e08e2bc08c5a515ebe8e28e
4
+ data.tar.gz: 3064929a45ca102c4a1cfb7b93f435bb9b2abec648dfbea78646a216637d602f
5
5
  SHA512:
6
- metadata.gz: c6b0b240e95d71af94afe9e490c9e9ba3432a2fdd883a13f1c37a5f066b7de8f348f6773a4efdd24d6efbb0c9f5f5c8045fc97b7b963e01e7580507b041af290
7
- data.tar.gz: 85b42c7d5b933ad3a88c006a590dba2e77cc59c3f94265e2760567285f001544e0d41b5c2dea841f5b8c7b52f4fc879a42d99a8cbf834af9b23a57943e0837dc
6
+ metadata.gz: 4f8b321dde867c0f7c428c660592f6ac334d827d0f7dbe5ba6d09fe320bc0d2fd884ffba84527ca552c49dcf4ad07d6645d21af173876e48ef551460fde1029a
7
+ data.tar.gz: b00c95d3ddad8d1d40d10d30d4125bdd6a154597f6ff763ea703957e28d18beb864498f5e680c3a63b3fc7bc1dfa4d91c5c957a03d158fe9f0620aefb7369cb8
data/.travis.yml CHANGED
@@ -5,7 +5,6 @@ cache: bundler
5
5
  rvm:
6
6
  - 2.4
7
7
  - 2.5
8
- - ruby-head
9
8
 
10
9
  branches:
11
10
  only:
data/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@
3
3
  This file is used to list changes made in each version of the kitchen-microwave
4
4
  gem.
5
5
 
6
+ ## 0.2.1 (2018-05-22)
7
+
8
+ - Stop testing against Ruby 2.6
9
+
6
10
  ## 0.2.0 (2018-05-11)
7
11
 
8
12
  - [Fedora] Explicitly install the sudo package
data/README.md CHANGED
@@ -2,11 +2,9 @@
2
2
 
3
3
  [![Build Status](https://img.shields.io/travis/socrata-platform/kitchen-microwave.svg)][travis]
4
4
  [![Gem Version](https://img.shields.io/gem/v/kitchen-microwave.svg)][rubygems]
5
- [![Dependency Status](https://gemnasium.com/socrata-platform/kitchen-microwave.svg)][gemnasium]
6
5
 
7
6
  [travis]: https://travis-ci.org/socrata-platform/kitchen-microwave
8
7
  [rubygems]: https://rubygems.org/gems/kitchen-microwave
9
- [gemnasium]: https://gemnasium.com/socrata-platform/kitchen-microwave
10
8
 
11
9
  Opinionated, config-less Test Kitchen!
12
10
 
@@ -30,6 +28,10 @@ Or install it yourself as:
30
28
 
31
29
  ## Usage
32
30
 
31
+ The Microwave CLI accepts all the same commands and options as Test Kitchen, e.g. `microwave list`, `microwave converge`, etc.
32
+
33
+ For debugging purposes, running any Microwave command results in its YAML config being written out to `.kitchen/.microwave.yml`.
34
+
33
35
  By default, Microwave will operate without any `.kitchen.yml` file present at all. It will generate the following config sections, each of which can be overridden in a `.kitchen.yml`:
34
36
 
35
37
  ***microwave***
@@ -122,10 +124,6 @@ suites:
122
124
  - recipe[test::nginx]
123
125
  ```
124
126
 
125
- The Microwave CLI accepts all the same commands and options as Test Kitchen, e.g. `microwave list`, `microave converge`, etc.
126
-
127
- For debugging purposes, running any Microwave command results in its YAML config being written out to `.kitchen/.microwave.yml`.
128
-
129
127
  ## Contributing
130
128
 
131
129
  Contributions can be submitted via GitHub pull requests. See [this article](https://help.github.com/articles/about-pull-requests/) if you're not familiar with GitHub Pull Requests. In brief:
@@ -133,7 +131,7 @@ Contributions can be submitted via GitHub pull requests. See [this article](http
133
131
  1. Fork the project's repo in GitHub.
134
132
  2. Create your feature branch (`git checkout -b my-new-feature`).
135
133
  3. Add code and tests for the new feature.
136
- 4. Ensure all tests pass (`bundle exec rake` + `cd test; chef exec kitchen test`).
134
+ 4. Ensure all tests pass (`bundle exec rake` + `cd test; chef exec microwave test`).
137
135
  5. Bump the version in `lib/kitchen/microwave/version.rb` in accordance with [semver](http://semver.org).
138
136
  6. Add a brief description of the change to `CHANGELOG.md`.
139
137
  7. Commit your changes (`git commit -am 'Add some feature'`).
@@ -23,7 +23,7 @@ module Kitchen
23
23
  module Microwave
24
24
  MAJOR = 0
25
25
  MINOR = 2
26
- PATCH = 0
26
+ PATCH = 1
27
27
  VERSION = [MAJOR, MINOR, PATCH].join('.')
28
28
  end
29
29
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kitchen-microwave
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Hartman
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-05-11 00:00:00.000000000 Z
11
+ date: 2018-05-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: chef
@@ -239,7 +239,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
239
239
  version: '0'
240
240
  requirements: []
241
241
  rubyforge_project:
242
- rubygems_version: 2.7.6
242
+ rubygems_version: 2.7.7
243
243
  signing_key:
244
244
  specification_version: 4
245
245
  summary: An automatic config generator for Test Kitchen+Dokken+Inspec