未初始化的常量ActiveSupport ::关注

时间:2011-07-27 10:23:35

标签: ruby-on-rails activerecord helpers

我得到以下链接来解决与类和实例方法相关的问题。 http://www.fakingfantastic.com/2010/09/20/concerning-yourself-with-active-support-concern/

module NotificationsHelper
  extend ActiveSupport::Concern

  module ClassMethods
    def my_class_method
      # ...
    end
  end

  module InstanceMethods
    def my_instance_method
      # ...
    end
  end
end

但是我得到未初始化的常量ActiveSupport :: Concern 错误。我正在使用Rails 2.3.5Ruby 1.9.2p180

1 个答案:

答案 0 :(得分:5)

此模块仅适用于Rails 3以后