Class: Utopia::Controller::Responder::Handler

Inherits:
Struct
  • Object
show all
Defined in:
lib/utopia/controller/responder.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#blockObject

Returns the value of attribute block

Returns:

  • (Object)

    the current value of block



41
42
43
# File 'lib/utopia/controller/responder.rb', line 41

def block
  @block
end

#content_typeObject

Returns the value of attribute content_type

Returns:

  • (Object)

    the current value of content_type



41
42
43
# File 'lib/utopia/controller/responder.rb', line 41

def content_type
  @content_type
end

Instance Method Details

#call(context, request, media_range, *arguments, **options) ⇒ Object



46
47
48
# File 'lib/utopia/controller/responder.rb', line 46

def call(context, request, media_range, *arguments, **options)
  context.instance_exec(media_range, *arguments, **options, &self.block)
end

#split(*arguments) ⇒ Object



42
43
44
# File 'lib/utopia/controller/responder.rb', line 42

def split(*arguments)
  self.content_type.split(*arguments)
end