class MyCell < Cell::Rails
include CanCan::ControllerAdditions
end@H_404_9@
如果你也在使用Devise,我必须这样做:
class MyCell < Cell::Rails
include CanCan::ControllerAdditions
include Devise::Controllers::Helpers
Devise::Controllers::Helpers.define_helpers(Devise::Mapping.new(:user,{}))
end@H_404_9@