Namespace
Class
Methods
- []
- build
- delete
- each
- initialize_copy
- insert
- insert_after
- insert_before
- last
- move
- move_after
- move_before
- new
- size
- swap
- unshift
- use
Included Modules
Attributes
[RW] | middlewares |
Class Public methods
new(*args)
📝 Source code
# File actionpack/lib/action_dispatch/middleware/stack.rb, line 70
def initialize(*args)
@middlewares = []
yield(self) if block_given?
end
🔎 See on GitHub
Instance Public methods
[](i)
📝 Source code
# File actionpack/lib/action_dispatch/middleware/stack.rb, line 87
def [](i)
middlewares[i]
end
🔎 See on GitHub
build(app = nil, &block)
📝 Source code
# File actionpack/lib/action_dispatch/middleware/stack.rb, line 148
def build(app = nil, &block)
instrumenting = ActiveSupport::Notifications.notifier.listening?(InstrumentationProxy::EVENT_NAME)
middlewares.freeze.reverse.inject(app || block) do |a, e|
if instrumenting
e.build_instrumented(a)
else
e.build(a)
end
end
end
🔎 See on GitHub
delete(target)
📝 Source code
# File actionpack/lib/action_dispatch/middleware/stack.rb, line 121
def delete(target)
middlewares.delete_if { |m| m.klass == target }
end
🔎 See on GitHub
each()
📝 Source code
# File actionpack/lib/action_dispatch/middleware/stack.rb, line 75
def each
@middlewares.each { |x| yield x }
end
🔎 See on GitHub
initialize_copy(other)
📝 Source code
# File actionpack/lib/action_dispatch/middleware/stack.rb, line 96
def initialize_copy(other)
self.middlewares = other.middlewares.dup
end
🔎 See on GitHub
insert(index, klass, *args, &block)
Also aliased as: insert_before
📝 Source code
# File actionpack/lib/action_dispatch/middleware/stack.rb, line 100
def insert(index, klass, *args, &block)
index = assert_index(index, :before)
middlewares.insert(index, build_middleware(klass, args, block))
end
🔎 See on GitHub
insert_after(index, *args, &block)
📝 Source code
# File actionpack/lib/action_dispatch/middleware/stack.rb, line 108
def insert_after(index, *args, &block)
index = assert_index(index, :after)
insert(index + 1, *args, &block)
end
🔎 See on GitHub
last()
📝 Source code
# File actionpack/lib/action_dispatch/middleware/stack.rb, line 83
def last
middlewares.last
end
🔎 See on GitHub
move(target, source)
Also aliased as: move_before
📝 Source code
# File actionpack/lib/action_dispatch/middleware/stack.rb, line 125
def move(target, source)
source_index = assert_index(source, :before)
source_middleware = middlewares.delete_at(source_index)
target_index = assert_index(target, :before)
middlewares.insert(target_index, source_middleware)
end
🔎 See on GitHub
move_after(target, source)
📝 Source code
# File actionpack/lib/action_dispatch/middleware/stack.rb, line 135
def move_after(target, source)
source_index = assert_index(source, :after)
source_middleware = middlewares.delete_at(source_index)
target_index = assert_index(target, :after)
middlewares.insert(target_index + 1, source_middleware)
end
🔎 See on GitHub
size()
📝 Source code
# File actionpack/lib/action_dispatch/middleware/stack.rb, line 79
def size
middlewares.size
end
🔎 See on GitHub
swap(target, *args, &block)
📝 Source code
# File actionpack/lib/action_dispatch/middleware/stack.rb, line 114
def swap(target, *args, &block)
index = assert_index(target, :before)
insert(index, *args, &block)
middlewares.delete_at(index + 1)
end
🔎 See on GitHub
unshift(klass, *args, &block)
📝 Source code
# File actionpack/lib/action_dispatch/middleware/stack.rb, line 91
def unshift(klass, *args, &block)
middlewares.unshift(build_middleware(klass, args, block))
end
🔎 See on GitHub
use(klass, *args, &block)
📝 Source code
# File actionpack/lib/action_dispatch/middleware/stack.rb, line 143
def use(klass, *args, &block)
middlewares.push(build_middleware(klass, args, block))
end
🔎 See on GitHub