class Rackful::StatusCodes::HTTP303SeeOther
Public Class Methods
new(location)
click to toggle source
@param location [URI::Generic, String]
Calls superclass method
Rackful::StatusCodes::HTTPStatus::new
# File lib/rackful/httpstatus.rb, line 163 def initialize location location = location.kind_of?( URI::Generic ) ? location : URI(location).normalize super( 303, '', :'See:' => location, 'Location' => location ) end