puppet-ghostbuster 0.4.3 → 0.4.4
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/CHANGELOG.md +7 -0
- data/lib/puppet-ghostbuster/version.rb +1 -1
- data/lib/puppet-ghostbuster.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1f3357c27a77664b4af1c45fa7943a8dfd6d9935
|
|
4
|
+
data.tar.gz: 057c4bb7ebb02a44ff8285b4da51846261905d9c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 53a0b0da32058254f01027bdc00d5830490b7fcc48d22e56d6414f712faca80e28f1ef402d7426f364ff3fd34592efa9a16c3535b1a1026891f7c37ec72a93ef
|
|
7
|
+
data.tar.gz: 472a5d32cfec6c148d7f71811ed095308e11e8a385e6f724f0b7152b71759fa68ee31c7aa719fd9939e0888adb3c97ab42120adca46f4763010211da2fbdcd03
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## [0.4.4](https://rubygems.org/gems/puppet-ghostbuster/versions/0.4.4) (2016-05-04)
|
|
4
|
+
[Full Changelog](https://github.com/camptocamp/puppet-ghostbuster/compare/0.4.3...0.4.4)
|
|
5
|
+
|
|
6
|
+
**Fixed bugs:**
|
|
7
|
+
|
|
8
|
+
- Fix unless/if issue
|
|
9
|
+
|
|
3
10
|
## [0.4.3](https://rubygems.org/gems/puppet-ghostbuster/versions/0.4.3) (2016-05-04)
|
|
4
11
|
[Full Changelog](https://github.com/camptocamp/puppet-ghostbuster/compare/0.4.2...0.4.3)
|
|
5
12
|
|
data/lib/puppet-ghostbuster.rb
CHANGED
|
@@ -179,7 +179,7 @@ class PuppetGhostbuster
|
|
|
179
179
|
break if found
|
|
180
180
|
end
|
|
181
181
|
|
|
182
|
-
@@issues << { :title => "[GhostBuster] File #{module_name}/#{file_name} seems unused", :body => file }
|
|
182
|
+
@@issues << { :title => "[GhostBuster] File #{module_name}/#{file_name} seems unused", :body => file } unless found
|
|
183
183
|
end
|
|
184
184
|
end
|
|
185
185
|
|