puppet-ghostbuster 0.2.1 → 0.3.0
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 +8 -1
- data/README.md +1 -0
- data/lib/puppet-ghostbuster.rb +2 -2
- data/lib/puppet-ghostbuster/version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 908643e9ab2393c19fe67d3b59c65dd9c83be53a
|
|
4
|
+
data.tar.gz: c8308c83ec8baea56fbcd6de574b4a0a614e2981
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fa0254d403fb3573c54bbe2c2dceafac7c306f2974685d9fbea83716a980270b35a14aa7403934f962bf364c75e74c115a6e5743d730daceb12d4feb4c4ce246
|
|
7
|
+
data.tar.gz: 7af1016cb3e9dc6169300fe854182da081d6f139fbfd1f0c4e9abffecb2684a95ed148598a810574b3513489fca4211cdae7dcf979b3b99f07cfe9b3c40a2319
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## [0.3.0](https://rubygems.org/gems/puppet-ghostbuster/versions/0.3.0) (2016-04-26)
|
|
4
|
+
[Full Changelog](https://github.com/camptocamp/puppet-ghostbuster/compare/0.2.1...0.3.0)
|
|
5
|
+
|
|
6
|
+
**Fixed bugs:**
|
|
7
|
+
|
|
8
|
+
- PuppetDB 3+ support [\#16](https://github.com/camptocamp/puppet-ghostbuster/pull/16) ([daenney](https://github.com/daenney))
|
|
9
|
+
|
|
3
10
|
## [0.2.1](https://rubygems.org/gems/puppet-ghostbuster/versions/0.2.1) (2015-10-07)
|
|
4
11
|
[Full Changelog](https://github.com/camptocamp/puppet-ghostbuster/compare/0.2.0...0.2.1)
|
|
5
12
|
|
|
@@ -69,4 +76,4 @@
|
|
|
69
76
|
## [0.0.1](https://rubygems.org/gems/puppet-ghostbuster/versions/0.0.1) (2015-04-21)
|
|
70
77
|
|
|
71
78
|
|
|
72
|
-
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|
|
79
|
+
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|
data/README.md
CHANGED
data/lib/puppet-ghostbuster.rb
CHANGED
|
@@ -68,13 +68,13 @@ class PuppetGhostbuster
|
|
|
68
68
|
def self.client
|
|
69
69
|
@@logger.debug "Connecting to puppet DB #{configuration.puppetdbserverurl}"
|
|
70
70
|
PuppetDB::Client.new({
|
|
71
|
-
:server => configuration.puppetdbserverurl,
|
|
71
|
+
:server => "#{configuration.puppetdbserverurl}/pdb/query",
|
|
72
72
|
:pem => {
|
|
73
73
|
'key' => configuration.hostprivkey,
|
|
74
74
|
'cert' => configuration.hostcert,
|
|
75
75
|
'ca_file' => configuration.localcacert,
|
|
76
76
|
}
|
|
77
|
-
})
|
|
77
|
+
}, 4)
|
|
78
78
|
end
|
|
79
79
|
|
|
80
80
|
def self.used_classes
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: puppet-ghostbuster
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Camptocamp
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2016-04-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: coveralls
|
|
@@ -149,9 +149,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
149
149
|
version: '0'
|
|
150
150
|
requirements: []
|
|
151
151
|
rubyforge_project:
|
|
152
|
-
rubygems_version: 2.
|
|
152
|
+
rubygems_version: 2.5.1
|
|
153
153
|
signing_key:
|
|
154
154
|
specification_version: 4
|
|
155
155
|
summary: Dead code detector for Puppet
|
|
156
156
|
test_files: []
|
|
157
|
-
has_rdoc:
|