2008-03-02から1日間の記事一覧

〜Gauche on Railsへの道〜 3. ActiveController 風のものを作る。その3 〜

まだまだ完成度は超〜低いのですが、一応サーバー上で ActiveRecord風 + ActionController風 + ActionView(ERB)風 が動きました \(^^)/ ActiveRecord風 (define-module todo (use active-record) (export <todo>)) (select-module todo) (define-class <todo> (<active-record>) ())</active-record></todo></todo>…

〜Gauche on Railsへの道〜 3. ActiveController 風のものを作る。その4 〜

(report-error e) サーバー内でエラーを gaurd で補足することで、直ぐにサーバーがエラー終了してしまうのを防げる。 その際に エラーの詳細な情報や stack trace をログに表示したいが、ドキュメントには見つからなかった。そこで、Kahuaのソースを読んで…