module Roda::RodaPlugins::Delegate::ClassMethods

def response_delegate(*meths)

Delegate the given methods to the response
def response_delegate(*meths)
  meths.each do |meth|
    define_method(meth){|*a, &block| @_response.send(meth, *a, &block)}
  end
end