我在我的 rails 3.2 应用程序中使用gem 'cells'和gem 'browser' 。我应该怎么做才能在我的单元格中访问浏览器 gem 的方法。
我找到了一个设计解决方案,这表明
class AuthenticateCell < Cell::Rails
include Devise::Controllers::Helpers
def login
@user = User.new
render
end
end
我应该包括什么来访问单元格内的“浏览器”宝石方法
谢谢!