repo.or.cz
/
merb_mart.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Create note on discontinued development
[merb_mart.git]
/
app
/
models
/
upload
/
image.rb
blob
52280e804d2d34b71b1daeaea08292cc9e077bd3
1
class Image < Upload
2
3
IMAGE_EXTENSIONS = ['gif', 'jpg', 'jpeg', 'png', 'bmp']
4
5
property :width, Integer
6
property :height, Integer
7
8
validates_present :width, :height
9
10
after :process, :resize
11
12
def resize; end
13
end