class ApplicationController < ActionController::Base
def func
end
end
class BaseController < ApplicationController
def func(a)
end
end
class MyController < BaseController
before_filter :func # I want this to call ApplicationController::func
end
この場合、BaseController::func が呼び出されます。ApplicationController のものを呼び出すにはどうすればよいですか?