designium/simple-image-uploader

View on GitHub
lib/rails/generators/simple_image_uploader/templates/image.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Image < ActiveRecord::Base
  belongs_to :imageable, polymorphic: true # You can use Image class with any other model you have.

  mount_uploader :file, FileUploader
end