ルーティング URL 名ヘルパーが確実に機能するようにするには、どのような基本設定が必要ですか?
たとえば、私のルートには次のものがあります。
Blog::Application.routes.draw do
resources :news, :as => :news_items, :controller => :news_items, :only => [:show, :index]
scope :module => "refinery" do
scope(:path => 'refinery', :as => 'admin', :module => 'Admin') do
resources :news, :except => :show, :as => :news_items, :controller => :news_items
end
end
end
しかし、以下はうまくいかないようです:
new_refinery_news_url
エラーが発生し続けます
未定義のローカル変数またはメソッド「new_refinery_news_url」
したがって、Gemfile に追加された RefineryCMS gem にメイン ルーティングがあるアプリケーションの構成方法に何かが欠けていると確信しています。
何かご意見は?