2011-07-04から1日間の記事一覧

REST on Ramaze

examples/helper/rest.rb というサンプルがあるけど、これは動かない。 / There is a example in example/helper/rest.rb. But it does not work. (I cannot find REST helper. If you can, it might work.)https://github.com/Ramaze/ramaze/blob/master/ex…

Ramaze で HTTP ステータスを返す方法

Ramaze で HTTPステータスを返す方法。 / How to change HTTP status in Ramaze. require'ramaze' class TestController < Ramaze::Controller map '/' def index response.status = 404 "Error!" end end