Show page source of Tenarai_CGI_Response #14424

= Tenarai::CGI::Response

CGI のレスポンスを扱うクラス

== 概要

HTTP のステータスコードや Content-Type などのヘッダーやクッキーといった HTTP クライアントへの応答を組み立てて出力するクラス。

以下の例では response ブロック変数が Tenarai::CGI::Response オブジェクトになります。

{{{ code ruby
require 'tenarai/cgi'

Tenarai::CGI.new do |request, response|
  response.code = 200
  response['content-type'] = 'text/plain'

  response.body << 'Hello World!'
end
}}}

{{{
Status: 200 OK
Content-Type: text/plain

Hello World!
}}}

== クラスメソッド

=== new(stdout)

== メソッド

=== code

=== header

=== cookie

=== content

=== body

[[BR]]

{{{ GoogleAdsense
<script type="text/javascript"><!--
google_ad_client = "pub-7795188745549116";
/* 468x60, 作成済み 08/03/06 */
google_ad_slot = "3502815244";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
}}}