我正在尝试在使用多个域名的系统上实现Rackismet。 Rakismet建议在初始化程序或application.rb中使用Proc进行以下操作。 (https://github.com/joshfrench/rakismet/blob/master/README.md#getting-started)
config.rakismet.url = Proc.new { ApplicationController.current_tenant.url }
我尝试了这个,但是没有用。我得到...
ApplicationController.current_tenant
!! #<NoMethodError: undefined method `current_tenant' for ApplicationController:Class>
有人知道实现这一目标的正确方法吗?