module Roda::RodaPlugins::Base::RequestMethods

def always

Yield to the match block and return rack response after the block returns.
def always
  block_result(yield)
  throw :halt, response.finish
end