I'm using Refile with a rails 4 app.
I'm getting the error: undefined method
accepts_attachments_for'`
I'm trying to do multiple image upload, and have two models: books and blobs.
My books.rb:
has_many :blobs, dependent: :destroy
accepts_attachments_for :blobs
My blobs.rb:
belongs_to :book
attachment :file
If I check rake routes, it shows that refile is mounted, so what is the issue?