kitchen-microwave 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +0 -1
- data/CHANGELOG.md +4 -0
- data/README.md +5 -7
- data/lib/kitchen/microwave/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: db9e93c87c7edc047a04214137600f56826c56805e08e2bc08c5a515ebe8e28e
|
4
|
+
data.tar.gz: 3064929a45ca102c4a1cfb7b93f435bb9b2abec648dfbea78646a216637d602f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4f8b321dde867c0f7c428c660592f6ac334d827d0f7dbe5ba6d09fe320bc0d2fd884ffba84527ca552c49dcf4ad07d6645d21af173876e48ef551460fde1029a
|
7
|
+
data.tar.gz: b00c95d3ddad8d1d40d10d30d4125bdd6a154597f6ff763ea703957e28d18beb864498f5e680c3a63b3fc7bc1dfa4d91c5c957a03d158fe9f0620aefb7369cb8
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
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
|
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'`).
|
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.
|
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
|
+
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.
|
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
|