私の質問は、次の開発スタックに言及しています。
- Rails 3.2.1
- ドレーパー0.14
- 祖先1.2.5
私がやりたいのは、ナビゲーションを自分のレイアウトに配信することです。だから私は私のでbeforeフィルターを定義しましたApplicationController
。
class ApplicationController < ActionController::Base
[..]
before_filter :current_navigation
[..]
def current_navigation
@n = PublicationDecorator.find(1)
end
end
上記のコードリストにあるように、私はを使用していdraper
ます。私PublicationDecorator
はで利用できませんApplicationController
。では、どうすればすべての装飾を手に入れることができますか?Publications
uninitialized constant ApplicationController::PublicationDecorator
ancestry
階層を実現するためにgemを使用しています。さらに質問は、私が使用している場合、すべてのオブジェクトが装飾されancestry
ますか?