class Argus::NullNavMonitor

Constants

UsageError

Public Instance Methods

callback(*) click to toggle source
  # File lib/argus/null_nav_monitor.rb
5 def callback(*)
6   fail UsageError, "Callbacks are not supported when the NavMonitor is disabled."
7 end
method_missing(*) click to toggle source
   # File lib/argus/null_nav_monitor.rb
 8 def method_missing(*)
 9   # Noop
10 end