method

assert_index

assert_index(index, where)
protected

No documentation available.

# File actionpack/lib/action_dispatch/middleware/stack.rb, line 123
    def assert_index(index, where)
      i = index.is_a?(Integer) ? index : middlewares.index(index)
      raise "No such middleware to insert #{where}: #{index.inspect}" unless i
      i
    end