Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v2.2.1) is shown here.
These similar methods exist in v3.2.13:
query_string()
public
Returns the query string, accounting for server idiosyncrasies.
Show source
def query_string
if uri = @env['REQUEST_URI']
uri.split('?', 2)[1] || ''
else
@env['QUERY_STRING'] || ''
end
end