0
votes
0answers
119 views

Dynamically set the s3 storage bucket for Refinery CMS

We are attempting to setup refinery cms using multiple tenants (multiple sites). One of the main issues we are having is separating out the different websites images depending on which site the user ...
1
vote
1answer
393 views

Process imagemagick functions not working with Dragonfly::Processor

In my user model I want to resize the image on upload. I am storing the images on amazon s3. Everything worked great and the image displays, uploads, deletes, etc. until I tried to add the ...
0
votes
1answer
171 views

Upload image using UIImagePickerController to dragonfly on rails

I have a app for iOS and I have the user pick a image with a UIImagePickerController. How can I upload that image to my rails app using dragonfly. I think I would use multipart-image-data but I ...
1
vote
2answers
323 views

Converting PDFs to PNGs with Dragonfly

I have a Dragonfly processor which should take a given PDF and return a PNG of the first page of the document. When I run this processor via the console, I get back the PNG as expected, however, when ...
0
votes
1answer
158 views

Can I use JSON values to set a profile image using Dragonfly in a Rails app?

I have an app that has both a web UI and mobile client on iPhone (Android coming soon). The user account page accepts a profile image, which just works with the Dragonfly gem. I'd like to let the ...
1
vote
1answer
397 views

Dragonfly: How to set max image size?

How to set max image size and weight/height using Dragonfly? Max size will be different for different models, so i would like to set it in model lvl.
1
vote
3answers
242 views

ruby - Dragonfly - Force CMYK to RGB conversion when doing thumbnails

I'm using a nice enough cms (locomotive(github)) to allow some non-tech savy users to upload pictures to the system. The program is able to resize and crop pictures to any given size. Trouble is, ...
1
vote
1answer
1k 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
535 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 ...
2
votes
1answer
694 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: ...
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 ...