class FSEvent::DebugDumper
Abstract class for devices
Public Class Methods
new(device_name="debugdumper")
click to toggle source
Calls superclass method
FSEvent::AbstractDevice::new
# File lib/fsevent/debugdumper.rb, line 21 def initialize(device_name="debugdumper") super end
Public Instance Methods
registered()
click to toggle source
# File lib/fsevent/debugdumper.rb, line 25 def registered add_watch("*", "*") end
run(watched_status, changed_status)
click to toggle source
# File lib/fsevent/debugdumper.rb, line 29 def run(watched_status, changed_status) #pp watched_status pp changed_status end