Sha256: 2d8d58fe4a86c5590bc8ec3bee0da7dd83d7a4d9d39f6695948ef92639b156a6
Contents?: true
Size: 587 Bytes
Versions: 315
Compression:
Stored size: 587 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
315 entries across 315 versions & 1 rubygems