2011-07-01から1ヶ月間の記事一覧

3月のライオン 6

日本語のマンガは帰国してまとめて買おうと思ってたけど、これだけは我慢できず購入。3月のライオン 6 (ジェッツコミックス)作者: 羽海野チカ出版社/メーカー: 白泉社発売日: 2011/07/22メディア: コミック購入: 20人 クリック: 1,157回この商品を含むブログ…

git でこのコミットがどのブランチに属しているかを調べる方法

git

git でこのコミットがどのブランチに属しているかを調べる方法 / how to find which branch has this commithttp://stackoverflow.com/questions/2706797/git-finding-what-branch-a-commit-came-from

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