Кто-нибудь знает, почему я получаю
undefined method `my_method' for #<MyController:0x1043a7410>
когда я вызываю my_method ("string") из моего подкласса ApplicationController? Мой контроллер выглядит как
class MyController < ApplicationController
def show
@value = my_method(params[:string])
end
end
и мой помощник
module ApplicationHelper
def my_method(string)
return string
end
end
и, наконец, ApplicationController
class ApplicationController < ActionController::Base
after_filter :set_content_type
helper :all
helper_method :current_user_session, :current_user
filter_parameter_logging :password
protect_from_forgery # See ActionController::RequestForgeryProtection for details