itamae 1.12.1 → 1.12.2
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 +4 -4
- data/.github/workflows/test.yml +2 -0
- data/CHANGELOG.md +8 -1
- data/lib/itamae/resource/remote_directory.rb +1 -1
- data/lib/itamae/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: 8ae63d9a50f327992d3efd26c9e0de210038cbacdad66a46f25506ff4120c14e
|
|
4
|
+
data.tar.gz: 2c8d8acb12e94cb4b3bdc8708d1928165a8b2b05f84a1036d01713a248542519
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 743001b3776f624308d7c4b85842f4fb186f0260eed592112e9aa6f9bd786032894090a2221ce6a4f969569159c78261fefc87270ba0e45ca6e71ade21e23333
|
|
7
|
+
data.tar.gz: 051e86dc11a37a1acc66a481ac96c768e6d0f20c3894dae2c94698f590b308b4374d84b2c3ae91f7aa2cd7c12f6aeb2ba4f16c5b748a809a4fd9058663de75cb
|
data/.github/workflows/test.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
## Unreleased
|
|
2
|
-
[full changelog](https://github.com/itamae-kitchen/itamae/compare/v1.12.
|
|
2
|
+
[full changelog](https://github.com/itamae-kitchen/itamae/compare/v1.12.2...master)
|
|
3
|
+
|
|
4
|
+
## v1.12.2
|
|
5
|
+
[full changelog](https://github.com/itamae-kitchen/itamae/compare/v1.12.1...v1.12.2)
|
|
6
|
+
|
|
7
|
+
Improvements
|
|
8
|
+
|
|
9
|
+
- [remote_directory: add diff -r option](https://github.com/itamae-kitchen/itamae/pull/338)
|
|
3
10
|
|
|
4
11
|
## v1.12.1
|
|
5
12
|
[full changelog](https://github.com/itamae-kitchen/itamae/compare/v1.12.0...v1.12.1)
|
|
@@ -39,7 +39,7 @@ module Itamae
|
|
|
39
39
|
super
|
|
40
40
|
|
|
41
41
|
if current.exist
|
|
42
|
-
diff = run_command(["diff", "-u", attributes.path, @temppath], error: false)
|
|
42
|
+
diff = run_command(["diff", "-u", "-r", attributes.path, @temppath], error: false)
|
|
43
43
|
if diff.exit_status == 0
|
|
44
44
|
# no change
|
|
45
45
|
Itamae.logger.debug "directory content will not change"
|
data/lib/itamae/version.rb
CHANGED
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.12.
|
|
4
|
+
version: 1.12.2
|
|
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: 2021-
|
|
13
|
+
date: 2021-10-22 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: thor
|
|
@@ -331,7 +331,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
331
331
|
- !ruby/object:Gem::Version
|
|
332
332
|
version: '0'
|
|
333
333
|
requirements: []
|
|
334
|
-
rubygems_version: 3.2.
|
|
334
|
+
rubygems_version: 3.2.22
|
|
335
335
|
signing_key:
|
|
336
336
|
specification_version: 4
|
|
337
337
|
summary: Simple Configuration Management Tool
|