benkoshy said 8 months ago on I'm a teapot :
How is one, practically, to implement all these response codes?

Wouldn't you need a massive case statement when returning a controller action? Does Rails handle most of the difficulties outside the box?

# pseudo-code
def controller_action
   case :succes
     then
   case :other code
     then 
   end
end