module Roda::RodaPlugins::SymbolStatus::ResponseMethods
def status=(code)
Sets the response status code by fixnum or symbol name
def status=(code) code = Rack::Utils.status_code(code) if code.is_a?(Symbol) super(code) end
Sets the response status code by fixnum or symbol name
def status=(code) code = Rack::Utils.status_code(code) if code.is_a?(Symbol) super(code) end