Method: Hanami::Slice::ClassMethods#call

Defined in:
lib/hanami/slice.rb

#call(rack_env) ⇒ Array

Calls the slice’s [Rack] app and returns a Rack-compatible response object

[rack]: github.com/rack/rack

Parameters:

  • rack_env (Hash)

    the Rack environment for the request

Returns:

  • (Array)

    the three-element Rack response array

See Also:

Since:

  • 2.0.0

Since:

  • 2.0.0

[View source]

790
791
792
# File 'lib/hanami/slice.rb', line 790

def call(...)
  rack_app.call(...)
end