#!/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