class Gem::GemcutterUtilities::WebauthnListener::MethodNotAllowedResponse
Private Instance Methods
add_access_control_headers()
click to toggle source
Calls superclass method
Gem::GemcutterUtilities::WebauthnListener::Response#add_access_control_headers
# File rubygems/gemcutter_utilities/webauthn_listener/response.rb, line 157 def add_access_control_headers super @http_response["allow"] = %w[GET OPTIONS] end
code()
click to toggle source
# File rubygems/gemcutter_utilities/webauthn_listener/response.rb, line 149 def code 405 end
reason_phrase()
click to toggle source
# File rubygems/gemcutter_utilities/webauthn_listener/response.rb, line 153 def reason_phrase "Method Not Allowed" end