class Rackful::StatusCodes::HTTP405MethodNotAllowed
Public Class Methods
new(methods)
click to toggle source
Calls superclass method
Rackful::StatusCodes::HTTPStatus::new
# File lib/rackful/httpstatus.rb, line 200 def initialize methods super( 405, '', 'Allow' => methods.join(', '), :'Allowed methods:' => methods ) end