I'm a n00b to the paperclip gem, so please excuse me, but I have spent the better part of two hours on this without progress (and I have watched the railscast on it):
My Rails app has a model with a paperclip attachment:
class Foo::Bar < ActiveRecord::Base
attr_protected :id
has_attached_file :mydocument
end
And whenever I try to submit a form with a blank file field for this attachment I get the following error:
Paperclip::AdapterRegistry::NoHandlerError: No handler found for ""
What am I to do? (I installed ImageMagick and specified Paperclip.options[:command_path] = 'C:\Program Files\ImageMagick-6.8.4-Q16'
in my environment file, not that I think that should make a difference in this case.)
I've uninstalled and reinstalled paperclip. I've restarted my computer. I ran the app on a co-worker's computer, and didn't get the error. But on my machine, I still get the error.