Class: Spree::Image
- Defined in:
- app/models/spree/image.rb
Instance Method Summary collapse
- #find_dimensions ⇒ Object
-
#mini_url ⇒ Object
used by admin products autocomplete.
-
#no_attachment_errors ⇒ Object
if there are errors from the plugin, then add a more meaningful message.
Instance Method Details
#find_dimensions ⇒ Object
19 20 21 22 23 24 25 26 |
# File 'app/models/spree/image.rb', line 19 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 |
#mini_url ⇒ Object
used by admin products autocomplete
15 16 17 |
# File 'app/models/spree/image.rb', line 15 def mini_url .url(:mini, false) end |
#no_attachment_errors ⇒ Object
if there are errors from the plugin, then add a more meaningful message
29 30 31 32 33 34 35 36 |
# File 'app/models/spree/image.rb', line 29 def 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 |