Class: ActionDispatch::MiddlewareStack::Middleware
- Inherits:
-
Object
- Object
- ActionDispatch::MiddlewareStack::Middleware
- Defined in:
- lib/action_dispatch/middleware/stack.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#args ⇒ Object
readonly
Returns the value of attribute args.
-
#block ⇒ Object
readonly
Returns the value of attribute block.
-
#klass ⇒ Object
readonly
Returns the value of attribute klass.
Instance Method Summary collapse
- #==(middleware) ⇒ Object
- #build(app) ⇒ Object
-
#initialize(klass, args, block) ⇒ Middleware
constructor
A new instance of Middleware.
- #inspect ⇒ Object
- #name ⇒ Object
Constructor Details
#initialize(klass, args, block) ⇒ Middleware
Returns a new instance of Middleware.
9 10 11 12 13 |
# File 'lib/action_dispatch/middleware/stack.rb', line 9 def initialize(klass, args, block) @klass = klass @args = args @block = block end |
Instance Attribute Details
#args ⇒ Object (readonly)
Returns the value of attribute args.
7 8 9 |
# File 'lib/action_dispatch/middleware/stack.rb', line 7 def args @args end |
#block ⇒ Object (readonly)
Returns the value of attribute block.
7 8 9 |
# File 'lib/action_dispatch/middleware/stack.rb', line 7 def block @block end |
#klass ⇒ Object (readonly)
Returns the value of attribute klass.
7 8 9 |
# File 'lib/action_dispatch/middleware/stack.rb', line 7 def klass @klass end |
Instance Method Details
#==(middleware) ⇒ Object
17 18 19 20 21 22 23 24 |
# File 'lib/action_dispatch/middleware/stack.rb', line 17 def ==(middleware) case middleware when Middleware klass == middleware.klass when Class klass == middleware end end |
#build(app) ⇒ Object
34 35 36 |
# File 'lib/action_dispatch/middleware/stack.rb', line 34 def build(app) klass.new(app, *args, &block) end |
#inspect ⇒ Object
26 27 28 29 30 31 32 |
# File 'lib/action_dispatch/middleware/stack.rb', line 26 def inspect if klass.is_a?(Class) klass.to_s else klass.class.to_s end end |
#name ⇒ Object
15 |
# File 'lib/action_dispatch/middleware/stack.rb', line 15 def name; klass.name; end |