undefined method `write_inheritable_attribute' for Rails::Generator::Base:Class (NoMethodError)

后端 未结 6 828
深忆病人
深忆病人 2020-12-15 22:52

I am working on rails, suddenly rails server stops working. It\'s working fine and I have used following command [platform windows 7]

gem install -v=2.3.5 ra         


        
6条回答
  •  盖世英雄少女心
    2020-12-15 23:23

    if you are using latest version of rails 3 or rails 4 then use class_attributes instead of write_inheritable_attribute, i.e.

    class_attribute :variable_name
    self.variable_name = value
    

    instead of

    write_inheritable_attribute(:variable_name, value)
    

提交回复
热议问题