From 19d49f690c438327ee7cf4f5ce683b992333a279 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Zurcher?= Date: Tue, 13 Aug 2024 14:31:33 +0200 Subject: Content-Type -> content-type --- lib/zorglub/node.rb | 4 ++-- spec/spec_helper.rb | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/zorglub/node.rb b/lib/zorglub/node.rb index 84cba92..d468280 100644 --- a/lib/zorglub/node.rb +++ b/lib/zorglub/node.rb @@ -248,7 +248,7 @@ module Zorglub $stderr << " !! #{node.class.name}::#{meth} not found\n" if app.opt :debug resp = node.response resp.status = 404 - resp['Content-Type'] = 'text/plain' + resp['content-type'] = 'text/plain' resp.write "%s mapped at %p can't respond to : %p" resp end @@ -276,7 +276,7 @@ module Zorglub catch(:stop_realize) do feed! response.write @content - response.headers['Content-Type'] ||= @mime || 'text/html' + response.headers['content-type'] ||= @mime || 'text/html' response.finish response end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 079607b..4a323c9 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -72,7 +72,7 @@ class Node0 < Zorglub::Node def do_content_type engine! 'real' - response.headers['Content-Type'] = 'text/mine' + response.headers['content-type'] = 'text/mine' end def do_partial(_arg1, _arg2) -- cgit v1.1-2-g2b99