# File lib/routing_filter/filter.rb, line 9
    def run(method, *args, &block)
      _next = self.next ? proc {|path, env| self.next.run(method, *args, &block) } : block
      RoutingFilter.active? ? send(method, *args, &_next) : _next.call(*args)
    end