paperclip-meta
paperclip-meta copied to clipboard
Adds width, height, and size to paperclip images.
See #55
paperclip is deprecated and there's a maintained fork https://github.com/kreeti/kt-paperclip. How about changing dependencies and releasing a new version?
(Rails 3.2.18) Scenario: I'm using the latest version of thoughtbot/paperclip (v4.1.1) to upload images and video. I use paperclip-meta to perform certain operations on images based on the metadata (image...
Based on the @laptite suggestions. Will fix #39. I don't understand reasons for this error, so this fix may be incorrect or not complete. At least it helped me. @teeparham...
This pull request allows the user to set a custom column name for the meta data (ie User#avatar_sizes instead of User#avatar_meta), either for all models or just for individual models.
Scenario: - Running paperclip-meta 1.2.0 with Rails 4.2.1, ruby 2.0.0p481 and paperclip-4.3.0 - Attempting to process an mp4 video The existing meta, or `original = instance.send("#{name}_meta")` is returning a hash...
I'm trying to work through an issue where Paperclip Meta is storing the styles with strings rather than symbols for keys. Although I can't work out why this is happening,...
Currently, `image_meta` is serialized as a base64 encoded string with custom methods provided by this gem. It would be simpler/better to use the standard rails `serialize` method, which uses YAML....
I'm using STI to store info about attachments (images and non-images) in the DB. Because it's STI, the table includes one meta column shared by both classes. When I upload...