月別アーカイブ: 2010年3月
Richardson Maturity Model
steps toward the glory of REST
A model (developed by Leonard Richardson) that breaks down the principal elements of a REST approach into three steps. These introduce resources, http verbs, and hypermedia controls.
helperメソッドをcontrollerなどview以外で使う方法
Rails2.1以降では、以下のようにしてhelperメソッドをcontrollerやmodelなどview以外で使用できる。
コントローラのクラスレベルやモデルクラス内では
ApplicationController.helpers.<ヘルパーメソッド>
コントローラのインスタンスメソッド内であれば、
self.class.helpers.<ヘルパーメソッド>