summary refs log tree commit
path: root/lib/rack/response.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rack/response.rb')
-rw-r--r--lib/rack/response.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/rack/response.rb b/lib/rack/response.rb
index d75a0fac..d621587c 100644
--- a/lib/rack/response.rb
+++ b/lib/rack/response.rb
@@ -190,6 +190,8 @@ module Rack
       def forbidden?;           status == 403;                        end
       def not_found?;           status == 404;                        end
       def method_not_allowed?;  status == 405;                        end
+      def not_acceptable?;      status == 406;                        end
+      def request_timeout?;     status == 408;                        end
       def precondition_failed?; status == 412;                        end
       def unprocessable?;       status == 422;                        end