Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
2answers
2k 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 ...
7
votes
1answer
2k 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 ...
3
votes
0answers
133 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
0answers
162 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 ...
2
votes
1answer
165 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: ...
2
votes
1answer
394 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 ...
1
vote
2answers
275 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
414 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 ...
1
vote
1answer
424 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
0answers
13 views

Dragonfly save image to S3 successful, but why i could not get the image file by the path /media/:job?

I have created a rails app named rex using rails3, ruby-1.9.2 and using dragonfly-0.9.10 to handle image files. class Entry < ActiveRecord::Base image_accessor :box_1 end ...
0
votes
2answers
63 views

Rails: How to protect images uploaded to S3 using dragonfly

I'm looking for a way to protect images uploaded from a Heroku Rails 3 app using the dragonfly gem to a S3 storage. I'd like to control access on a user basis and ensure that the images can't be ...
0
votes
1answer
101 views

Assigning Image from URL with Dragonfly

I'm using Dragonfly for handling images on a Rails 3.1 app. I'm struggling with assigning images to a model via the url. I have this working fine in a form: <%= form_for [@word, @game, @picture], ...
0
votes
1answer
248 views

Multi file upload with rails_admin (Carrierwave, Paperclip, Dragonfly)

I'm looking for a quick solution for multi file upload with rails_admin. Any ideas or solutions out there?
0
votes
0answers
56 views

Ruby on Rails - Dragonfly - Validating an attribute based on presence of image_url

I have successfully setup my Post model to grab images via urls with dragonfly. In my Post record i have an additional attribute called image_webpage_url which stores the url of the webpage the ...
0
votes
2answers
73 views

In Rails model check if URL on same Rails server exists

In a Rails model how can I check if a URL on the same Rails server exists? I'm using dragonfly and am trying to check the existence of an image from a path such as ...
0
votes
1answer
119 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 ...
0
votes
1answer
186 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 ...
0
votes
0answers
58 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 ...
0
votes
2answers
206 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, ...
0
votes
0answers
198 views

Image upload in background with rails and dragonfly

I would like to replace the upload box with some ajax that automatically send the file and does not wait for the form to be submitted. Ideally there should be some sort of status and the ability to ...
0
votes
1answer
403 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
0answers
119 views

How to bypass dragonfly route recognition if image was already created

I was wondering if there is a common solution out there to bypass dragonfly entirely in case an image already exists. Maybe by writing to the public directory instead of the tmp directory? I recently ...
0
votes
1answer
261 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
446 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 ...
0
votes
1answer
335 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: ...
0
votes
1answer
1k 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 ...