lita-puppet 0.7.2 → 1.0.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/lib/utils/lita_puppet/puppetdb.rb +1 -1
- data/lita-puppet.gemspec +1 -1
- data/spec/lita/handlers/puppet_spec.rb +2 -2
- 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: b26dfb5958492199cb906c0d0ebf51fffd4a8452
|
4
|
+
data.tar.gz: e2525831750cb309506e4779c642b442d998eda9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eacfa48fc760752e931beac72b437994c43d68cdcb15343a60e351308e192ab9e0c79ea3372a5da931dd700baefbda4d7f5ddb9730260382bdd8130b69f06158
|
7
|
+
data.tar.gz: 85c717691d9f470d5488acb64acf3a3b5f6abaa826531fa0a9fa8548812063480511cdfbd8f4707d4f6b80c3d274a0e85ea30604df2df8be73fc9498e1b45356
|
data/lita-puppet.gemspec
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# rubocop:disable Metrics/BlockLength
|
2
2
|
Gem::Specification.new do |spec|
|
3
3
|
spec.name = 'lita-puppet'
|
4
|
-
spec.version = '0.
|
4
|
+
spec.version = '1.0.0'
|
5
5
|
spec.authors = ['Daniel Schaaff', 'Jonathan Gnagy'].sort
|
6
6
|
spec.email = ['jgnagy@knuedge.com']
|
7
7
|
spec.description = 'Some basic Puppet interactions for Lita'
|
@@ -66,8 +66,8 @@ describe Lita::Handlers::Puppet, lita_handler: true do
|
|
66
66
|
describe('#node_profiles') do
|
67
67
|
it 'should provide a list of profiles and roles associated with a node' do
|
68
68
|
allow(::PuppetDB::Client).to receive(:get).and_return(
|
69
|
-
'
|
70
|
-
'
|
69
|
+
'resources' => {
|
70
|
+
'data' => [
|
71
71
|
{ 'tags' => ['profile::foo'] },
|
72
72
|
{ 'tags' => ['role::baz'] }
|
73
73
|
]
|