attachinary
                                
                                
                                
                                    attachinary copied to clipboard
                            
                            
                            
                        Attachments handler for Rails that uses Cloudinary for storage.
There are few comments on this. Cloudinary added quite a few methods during the versions.
I have a products class and using attachinary/cloudinary for images. Decided to try out the administrate gem and this is what I am getting: _uninitialized constant Attachinary::FileDashboard `Extracted source (around...
same as #135, confirm can loose cloudinary version
I'm using simple_form and I've included attachinary. I don't want to use the attachinary js, so I've set my inputs as: :file, but when I add new photos for upload...
Hi, I have a form that is not attached to a model via the Rails form builder and I could not figure out how to make attachinary work if I...
I have the following in my model: ``` class Cv < ActiveRecord::Base has_attachment :attachment, accessible: false validates :attachment, presence: true ``` If I attempt a save via form submit with...
I've just integrated attachinary in my project and everything is working. However when an `Attachinary::File` is destroyed remote file is not removed. My environment: ``` * rails (4.2.6) * attachinary...
Fixes #142 - active_support expects `as_json` to _optionally_ accept an options hash argument line 93 in https://github.com/rails/rails/blob/master/activesupport/lib/active_support/json/encoding.rb calls as_json without an argument so this breaks when trying to jsonify an...
Active Model Serializers use the Rails json renderer, which expects the File instance to respond to [as_ json](http://api.rubyonrails.org/classes/ActiveModel/Serializers/JSON.html#method-i-as_json) , which optinally takes an options argument. Attachinary's FileMixin#as_json has a required...
Hi there, in my Rails 5 app, I've managed to get attachinary working well with the singular (has_attachment), however, the plural/multiple files doesn't seem to be saving to my database...