Method: Agoo::Request#path_info
- Defined in:
- ext/agoo/request.c
#path_info ⇒ Object
call-seq: path_info()
Returns the script name which is assumed to be either ‘/’ or the empty according to the rack restrictions are followed on what the script name and path info should be.
157 158 159 160 |
# File 'ext/agoo/request.c', line 157
static VALUE
path_info(VALUE self) {
return req_path_info((Req)DATA_PTR(self));
}
|