문제

I am following this tutorial to add messaging functionality between the users in my rails app, but got an error in my User model.

class User < ActiveRecord::Base
  has_mailbox
end

This gives me the following error:

undefined local variable or method `has_mailbox' for #<Class:0xb60f6f84>

Any ideas?

도움이 되었습니까?

해결책

I've checked this gem, try to run

rails g has_mailbox:install

when you install any gem in rails app, the good idea is to check generators available

rails g //list of available generators
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top