Method: Agoo::Request#to_s
- Defined in:
- ext/agoo/request.c
#to_s ⇒ Object
call-seq: to_s()
Returns a string representation of the request.
617 618 619 620 621 622 |
# File 'ext/agoo/request.c', line 617 static VALUE to_s(VALUE self) { volatile VALUE h = to_h(self); return rb_funcall(h, rb_intern("to_s"), 0); } |