itamae 1.10.9 → 1.10.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -1
- data/lib/itamae/logger.rb +1 -0
- data/lib/itamae/version.rb +1 -1
- data/spec/integration/default_spec.rb +1 -1
- data/spec/integration/recipes/default.rb +4 -4
- 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: a27b553f519a4e36fdc40534d8033528f3dfbbca42133fed38c8af9bafc0234c
|
4
|
+
data.tar.gz: d3b9da92d9ebaa0c4f3ceff9f483944e1fa02d2a28741c921c3b16f283b083cf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5cf3758a3778d8a22128d08263f03bbf10c2ea53246128013786bda0c44549a14b89792798db43e5de573264fe06a5c3e8049cf52837db46d086e84f528c10c6
|
7
|
+
data.tar.gz: 86f33c85a7deed7cb93993abe8e811e0dd6e84861350ac48f7fae462a6fdca9e3c9b9a1c6ccf8438af326fc77829a5f0eb1d4e848aed6efe36d29739393467f3
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
## Unreleased
|
2
|
-
[full changelog](https://github.com/itamae-kitchen/itamae/compare/v1.10.
|
2
|
+
[full changelog](https://github.com/itamae-kitchen/itamae/compare/v1.10.10...master)
|
3
|
+
|
4
|
+
## v1.10.10
|
5
|
+
[full changelog](https://github.com/itamae-kitchen/itamae/compare/v1.10.9...v1.10.10)
|
6
|
+
|
7
|
+
Improvements
|
8
|
+
|
9
|
+
- [Make output unbuffered](https://github.com/itamae-kitchen/itamae/pull/317)
|
3
10
|
|
4
11
|
## v1.10.9
|
5
12
|
[full changelog](https://github.com/itamae-kitchen/itamae/compare/v1.10.8...v1.10.9)
|
data/lib/itamae/logger.rb
CHANGED
data/lib/itamae/version.rb
CHANGED
@@ -104,7 +104,7 @@ describe file('/tmp/http_request_headers.html') do
|
|
104
104
|
its(:content) { should match(/"User-Agent":\s*"Itamae"/) }
|
105
105
|
end
|
106
106
|
|
107
|
-
|
107
|
+
xdescribe file('/tmp/http_request_redirect.html') do
|
108
108
|
it { should be_file }
|
109
109
|
its(:content) { should match(/"from":\s*"itamae"/) }
|
110
110
|
end
|
@@ -210,10 +210,10 @@ http_request "/tmp/http_request_headers.html" do
|
|
210
210
|
url "https://httpbin.org/get"
|
211
211
|
end
|
212
212
|
|
213
|
-
http_request "/tmp/http_request_redirect.html" do
|
214
|
-
|
215
|
-
|
216
|
-
end
|
213
|
+
# http_request "/tmp/http_request_redirect.html" do
|
214
|
+
# redirect_limit 1
|
215
|
+
# url "https://httpbin.org/redirect-to?url=https%3A%2F%2Fhttpbin.org%2Fget%3Ffrom%3Ditamae"
|
216
|
+
# end
|
217
217
|
|
218
218
|
link "/tmp-link" do
|
219
219
|
to "/tmp"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: itamae
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.10.
|
4
|
+
version: 1.10.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ryota Arai
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2020-
|
13
|
+
date: 2020-07-07 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: thor
|
@@ -329,7 +329,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
329
329
|
- !ruby/object:Gem::Version
|
330
330
|
version: '0'
|
331
331
|
requirements: []
|
332
|
-
rubygems_version: 3.
|
332
|
+
rubygems_version: 3.0.3
|
333
333
|
signing_key:
|
334
334
|
specification_version: 4
|
335
335
|
summary: Simple Configuration Management Tool
|