Skip to content

Instantly share code, notes, and snippets.

@linojon
Last active August 29, 2015 14:04
Show Gist options
  • Save linojon/91eaba5940041c3dd048 to your computer and use it in GitHub Desktop.
Save linojon/91eaba5940041c3dd048 to your computer and use it in GitHub Desktop.
module DropInTheBucket
class File < ::ActiveRecord::Base
belongs_to :dropinable, polymorphic: true
mount_uploader :item, PhotoUploader
end
end
---
class Note < ActiveRecord::Base
has_dropin :photo
end
---
drop_in_the_bucket/orm/active_record/file.rb:4:in `<class:File>': uninitialized constant DropInTheBucket::File::PhotoUploader (NameError)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment