Sha256: 9a50d6e91e80c486d9abdbc04f51d6795a384eedcadb7fe01c6a05a4b67f30bd
Contents?: true
Size: 460 Bytes
Versions: 3
Compression:
Stored size: 460 Bytes
Contents
#!/usr/bin/env ruby require 'arborist/event' unless defined?( Arborist::Event ) require 'arborist/event/node' # An event sent on every node update, regardless of whether or not the update resulted in # any changes class Arborist::Event::NodeUpdate < Arborist::Event::Node ### Returns +true+ if the event contains node information other than about a ### change in its state. def informational? return true end end # class Arborist::Event::NodeUpdate
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
arborist-0.6.0 | lib/arborist/event/node_update.rb |
arborist-0.5.0 | lib/arborist/event/node_update.rb |
arborist-0.4.0 | lib/arborist/event/node_update.rb |