module Smooth::Command::Instrumented::ClassMethods

Public Instance Methods

disable_event_tracking!() click to toggle source
# File lib/smooth/command/instrumented.rb, line 27
def disable_event_tracking!
  send(:include, Restored)
end
enable_event_tracking!() click to toggle source
# File lib/smooth/command/instrumented.rb, line 22
def enable_event_tracking!
  send(:include, Smooth::Event::Adapter)
  send(:include, Overrides)
end