Sha256: 8dc10829a2881286f0030014769f1fa4e06a7bf38aa1dc8f49d4422e58a2f865
Contents?: true
Size: 619 Bytes
Versions: 56
Compression:
Stored size: 619 Bytes
Contents
class Chef class Util class DSC class ResourceInfo # The name is the text following [Start Set] attr_reader :name # A list of all log messages between [Start Set] and [End Set]. # Each line is an element in the list. attr_reader :change_log def initialize(name, sets, change_log) @name = name @sets = sets @change_log = change_log || [] end # Does this resource change the state of the system? def changes_state? @sets end end end end end
Version data entries
56 entries across 56 versions & 1 rubygems