Sha256: 09aaa9ce2d2483c4a6dd934f8ab01ca644e1f877f789b826cfb0d06cf384faf6
Contents?: true
Size: 550 Bytes
Versions: 2
Compression:
Stored size: 550 Bytes
Contents
# -*- ruby -*- #encoding: utf-8 require 'arborist/event' unless defined?( Arborist::Event ) require 'arborist/event/node_matching' # An event sent when one or more attributes of a node changes. class Arborist::Event::NodeDelta < Arborist::Event include Arborist::Event::NodeMatching ### Create a new NodeDelta event for the specified +node+. The +delta+ ### is a Hash of: ### attribute_name => [ old_value, new_value ] def initialize( node, delta ) super # Overridden for the documentation end end # class Arborist::Event::NodeDelta
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
arborist-0.0.1.pre20160128152542 | lib/arborist/event/node_delta.rb |
arborist-0.0.1.pre20160106113421 | lib/arborist/event/node_delta.rb |