Create note on discontinued development
[merb_mart.git] / app / models / upload / image.rb
blob52280e804d2d34b71b1daeaea08292cc9e077bd3
1 class Image < Upload
3   IMAGE_EXTENSIONS = ['gif', 'jpg', 'jpeg', 'png', 'bmp']
5   property :width,      Integer
6   property :height,     Integer
8   validates_present :width, :height
10   after :process, :resize
12   def resize; end
13 end