dragonfly icon indicating copy to clipboard operation
dragonfly copied to clipboard

A Ruby gem for on-the-fly processing - suitable for image uploading in Rails, Sinatra and much more!

Results 71 dragonfly issues
Sort by recently updated
recently updated
newest added

Would it be possible to use [posix-spawn](https://github.com/rtomayko/posix-spawn) for shell commands? >It's more efficient than popen3 and provides meaningful process hierarchies because it performs a single fork/exec. (popen3 double forks to...

![](https://pbs.twimg.com/media/EdnKZOXXYAAcqav?format=jpg&name=large) I'm having hard time to implement this Dragonfly in my Ruby on Rails project :)

Hello, So recently I've been trying to implement Dragonfly on my program. Since I had a multipart form, I had to actually save the file so that later I could...

Is it possible to add an option `ssl_verify_mode` to `Dragonfly.app.configure` in order to use it here https://github.com/markevans/dragonfly/blob/master/lib/dragonfly/job/fetch_url.rb#L67-L80? ```diff def get(url) url = parse_url(url) http = Net::HTTP.new(url.host, url.port) http.use_ssl = true...

My model has 2 attachments - original_uid - image_uid ``` dragonfly_accessor :original do copy_to :image end dragonfly_accessor :image do after_assign :process_image end ``` I am also using `retained_original` in my...

Hi @markevans, one of the issues with fetching url-based files is the delay while the server downloads the file to store. Do you think there's a way to offload the...

Hi @markevans, I hope all is going well in the leadup to Christmas :) I'm looking to download files from Google Drive via dragonfly. They'll be specified by the user...

Hi, Using v1.0.12 here, I hope it's recent enough and not pertaining to the problem. When I try to upload a new attachment for a record whose previous attachment file...

When I use dragonfly datastore s3 for upload image, I got error when trying use remote_url. And if I use Dragonfly.app.remote_url_for(images.first.image_uid) --> Images no such key

I've come up against the following error when identifying a file with a quote mark in the file name: ``` ruby Unmatched double quote: "identify -ping -format '%m %w %h'...