Class: Grape::Middleware::Stack::Middleware

Inherits:
Object
  • Object
show all
Defined in:
lib/grape/middleware/stack.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(klass, *args, &block) ⇒ Middleware

Returns a new instance of Middleware.



11
12
13
14
15
# File 'lib/grape/middleware/stack.rb', line 11

def initialize(klass, *args, &block)
  @klass = klass
  @args = args
  @block = block
end

Instance Attribute Details

#argsObject (readonly)

Returns the value of attribute args.



9
10
11
# File 'lib/grape/middleware/stack.rb', line 9

def args
  @args
end

#blockObject (readonly)

Returns the value of attribute block.



9
10
11
# File 'lib/grape/middleware/stack.rb', line 9

def block
  @block
end

#klassObject (readonly)

Returns the value of attribute klass.



9
10
11
# File 'lib/grape/middleware/stack.rb', line 9

def klass
  @klass
end

Instance Method Details

#==(other) ⇒ Object



21
22
23
24
25
26
27
28
# File 'lib/grape/middleware/stack.rb', line 21

def ==(other)
  case other
  when Middleware
    klass == other.klass
  when Class
    klass == other || (name.nil? && klass.superclass == other)
  end
end

#inspectObject



30
31
32
# File 'lib/grape/middleware/stack.rb', line 30

def inspect
  klass.to_s
end

#nameObject



17
18
19
# File 'lib/grape/middleware/stack.rb', line 17

def name
  klass.name
end

#use_in(builder) ⇒ Object



34
35
36
# File 'lib/grape/middleware/stack.rb', line 34

def use_in(builder)
  builder.use(@klass, *@args, &@block)
end