Class: Image
Instance Method Summary collapse
- #find_dimensions ⇒ Object
-
#no_attachement_errors ⇒ Object
if there are errors from the plugin, then add a more meaningful message.
Instance Method Details
#find_dimensions ⇒ Object
13 14 15 16 17 18 19 20 |
# File 'app/models/image.rb', line 13 def find_dimensions temporary = .queued_for_write[:original] filename = temporary.path unless temporary.nil? filename = .path if filename.blank? geometry = Paperclip::Geometry.from_file(filename) self. = geometry.width self. = geometry.height end |
#no_attachement_errors ⇒ Object
if there are errors from the plugin, then add a more meaningful message
23 24 25 26 27 28 29 30 |
# File 'app/models/image.rb', line 23 def no_attachement_errors unless .errors.empty? # uncomment this to get rid of the less-than-useful interrim messages # errors.clear errors.add :attachment, "Paperclip returned errors for file '#{}' - check ImageMagick installation or image source file." false end end |