I am using mailboxer gem and I do not know how to use it with Paperclip (Message Class).
Using a clip with the User class:
class User < ActiveRecord::Base has_attached_file :picture end
How can I add has_attached_file to the Message class (there is no message.rb in the models)?
Thanks.
source share