chef-journalist 0.1.1 → 0.1.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.
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "chef-journalist"
3
- s.version = "0.1.1"
3
+ s.version = "0.1.2"
4
4
  s.authors = ["Sean Porter"]
5
5
  s.email = ["portertech@gmail.com"]
6
6
  s.homepage = "https://github.com/portertech/chef-journalist"
@@ -14,6 +14,6 @@ class Journalist < Chef::Handler
14
14
  else
15
15
  run_status.updated_resources.select {|r| @resource_types.include? r.resource_name }
16
16
  end
17
- updated_resources.uniq.each {|r| Chef::Log.info " #{r}" }
17
+ updated_resources.map {|r| r.to_s }.uniq.each {|r| Chef::Log.info " #{r}" }
18
18
  end
19
19
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chef-journalist
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
4
+ hash: 31
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 1
10
- version: 0.1.1
9
+ - 2
10
+ version: 0.1.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Sean Porter