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

ash*_*ai_ 3 activerecord ruby-on-rails 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

Adi*_*ghi 5

此模块仅适用于Rails 3以上版本