mirror of
https://github.com/kemko/bw.git
synced 2026-01-01 15:45:44 +03:00
17 lines
215 B
Ruby
17 lines
215 B
Ruby
require 'rubygems'
|
|
|
|
module Express42
|
|
class ReportHandler < Chef::Handler
|
|
def initialize
|
|
end
|
|
|
|
def report
|
|
run_status.updated_resources.each do |r|
|
|
puts r.to_s
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
|