Dragonfly is a Ruby gem for a framework that enables on-the-fly processing for any content type. It is especially suited to image handling. Its uses range from image thumbnails to standard attachments to on-demand text generation. Use this tag for the Ruby gem, not the deprecated [dragonfly] tag, ...
0
votes
1answer
534 views
Capybara spec failing when using attach_file with Dragonfly
I'm writing a spec for a form page which uses DragonFly gem to handle attachments, here is my spec (relevant part of it)
fill_in "Subject", :with => 'My message'
fill_in "Title", :with => 'My ...
5
votes
1answer
904 views
multiple image upload with dragonfly
i was trying for multiple image upload with dragonfly in rails3. i searched for some tutorials, but couldn't find any. i found a tutorial for multiple image upload with Carrierwave, but couldnt find ...
31
votes
3answers
10k views
Rails 3 paperclip vs carrierwave vs dragonfly vs attachment_fu
I'm working on upgrading a Rails 2.3.11, Ruby 1.9.2 app to Rails 3.0.10, and attachment_fu no longer works.
I'm looking at changing to paperclip, carrierwave, or dragonfly for file uploads, or maybe ...
0
votes
1answer
446 views
Is a dragonfly gem good solution for heavy loaded project
Is dragonfly gem good solution for heavy load project ? ( massive social application like Facebook for example)
Because I think it's good solution for small - medium sized projects but I really ...
5
votes
1answer
336 views
Uploading image to Rails server (using Dragonfly) from iPhone
I am trying to upload an image from iPhone to Rails, which is configured with Dragonfly gem. The problem is I keep getting this error:
Dragonfly::TempObject must be initialized with a String, a ...
2
votes
1answer
679 views
Dragonfly and Short URLs
I'm using Dragonfly in a project that returns a large stream of photos and was looking to optimize the URLs. I'm currently getting image URLs like:
...
3
votes
2answers
962 views
Dragonfly gem - default images?
I'm using Dragonfly and would like to have a default image that resizes in the same way present thumbnails do.
I currently have the following code, but when Dragonfly uses the fetch_file method, it ...
1
vote
0answers
168 views
How ContentFlow scales the images?
Have been using ContentFlow as a JS image gallery.
I have only one version of image files sized to 1000x750 landscapes and 600x800 portraits and none exceeds 300kb.
i have set maxItemSize:400;
When ...
1
vote
2answers
700 views
Move RefineryCMS from Local to Production
We decided to try using RefineryCMS for our current project and have run into some issues.
We began the project in a local development environment. The deadline is very quickly approaching. At first, ...
1
vote
0answers
627 views
rack ssl and nginx configuration
Hi I am trying to use rack ssl with my nginx. Everything works fine on all pages apart from my statics dragonfly images which is serve as a proxy via nginx. Here is that part of the config (ofc when ...
3
votes
1answer
2k views
How to set Dragonfly for use with S3?
In my initializers/dragonfly.rb I put this:
require 'dragonfly/rails/images'
app = Dragonfly[:app_name]
app.datastore = Dragonfly::DataStorage::S3DataStore.new({
:bucket_name => ...
0
votes
1answer
732 views
Dragonfly Gem with ImageMagick and Passenger
I was having some problems getting the dragonfly gem to play nicely with passenger. Passenger doesn't seem to use the current $PATH so it can't find the convert binary. I've added some configuration ...
0
votes
2answers
657 views
Specify command path with dragonfly gem
I keep getting an error when i try to upload an Image with dragonfly. I know what the problem is because I solved it when I was using paperclip. But I don't know how to solve it for dragonfly.
The ...
0
votes
2answers
887 views
Define Dragonfly specific path for S3 Datastore
I need to define an specific structure path for storing my files in S3.
Example:
Instead of
'bucket_name/2010/12/23/127/43/2345/File.jpg'
I need
...
2
votes
1answer
679 views
Rails & Dragonfly: Cleaning up unused images
I'm working on cleaning up an old Rails 2.3.5 app that uses Dragonfly to store its images.
I have a feeling there are far more images in the filestore than records in the database, but due to ...
0
votes
1answer
522 views
Dragonfly question
I tried switching from gem rails 3.0.0.rc to rails 3.0.0 in my Gemfile recently and when doing so I got a problem with Dragonfly when starting the server. The error message says:
...
20
votes
2answers
4k views
Carrierwave or Dragonfly
I have been looking into rails file upload tools and the ones that seemed the most appealing and interesting to me were carrierwave and dragonfly.
From looking around it seems like carrierwave takes ...
1
vote
1answer
2k views
Rails + Dragonfly gem: Saving image in a directory structure based on ActiveRecord object attributes
I'm using dragonfly gem to manage images and attachments in my rails app and I need to store images in a specific directory structure based on my
user model.
let' say I have user model which has a ...