attachinary
                                
                                
                                
                                    attachinary copied to clipboard
                            
                            
                            
                        Attachments handler for Rails that uses Cloudinary for storage.
@assembler, what do you think about adding this to the `bindEventHandlers`? ``` coffeescript @$input.bind 'attachinary:urladded', (event, data) => @$input.fileupload("option", "formData").file = data @$input.fileupload("add", files: [data]) delete @$input.fileupload("option", "formData").file ```
Hi Ben, it would be great if an "image resizing before sending to cloudinary" could be done in some way. (maybe "carrierwave like") I think it do not need more...
While the gem already stores the picture dimensions, I think it would be great to also store all available metadata (EXIF, GPS, etc...). Am I the only one with this...
There seems to be no easy way to attach a new image to an array. If I have `has_attachments :photos` Then `model.photo_urls = [...]` works But what if I want...
I see that attachinary.js forces sequentialUploads to be true. The jquery fileupload plugin's default is false (parallel uploads). Is there any reason to force sequential here?