「api」フォルダーにコントローラー「ott_controller.rb」があります。
私のルートは次のようになります。
map.namespace :api, :path_prefix => 'api' do |api|
api.connect 'ott/playlists/:id.xml', :controller => 'ott', :action => 'playlists', :conditions => { :method => :get }
end
このためのヘルパー ファイルを作成しようとしていますが、取得できません。
ヘルパーフォルダーで、次のことを試しました
- モジュール「OttHelper」を含むファイル「ott_helper.rb」
- モジュール「OttHelper」を含むファイル「api_ott_helper.rb」
- モジュール「Api::OttHelper」を含むファイル「ott_helper.rb」
- モジュール「Api::OttHelper」を含むファイル「api_ott_helper.rb」
それらのどれも機能しません。
これは Rails 2 プロジェクトです。
何か案は?