Method: Roda::RodaPlugins::Delegate::ClassMethods#response_delegate
- Defined in:
- lib/roda/plugins/delegate.rb
#response_delegate(*meths) ⇒ Object
Delegate the given methods to the response
64 65 66 67 68 |
# File 'lib/roda/plugins/delegate.rb', line 64 def response_delegate(*meths) meths.each do |meth| define_method(meth){|*a, &block| @_response.send(meth, *a, &block)} end end |