Paperclip is a library for the Ruby on Rails framework which makes dealing with file attachments easier. In addition to dealing with standalone files, the library provides convenience methods for creating image thumbnails.

learn more… | top users | synonyms

23
votes
5answers
4k views

How can I set paperclip's storage mechanism based on the current Rails environment?

I have a rails application that has multiple models with paperclip attachments that are all uploaded to S3. This app also has a large test suite that is run quite often. The downside with this is ...
20
votes
6answers
10k views

rails paperclip and passenger `is not recognized by the 'identify' command`

When I upload a photo, my model fails validation, err well even without any validations I'm returned this error: /tmp/stream20100103-13830-ywmerx-0 is not recognized by the 'identify' command. and ...
17
votes
4answers
2k views

How Do I Use Factory Girl To Generate A Paperclip Attachment?

I have model Person that has many Images, where images has a Paperclip attachment field called data, an abbreviated version displayed below: class Person has_many :images ... end class Image ...
16
votes
4answers
10k views

Paperclip image uploads in Rails - Paperclip::CommandNotFoundError

I'm using paperclip to handle image uploads to rails. it worked fine on my dev OSX machine, but now on my web server I get this error: [paperclip] /Users/marky/bin/identify '-format' '%wx%h' ...
12
votes
2answers
3k views

Saving files using Paperclip without upload

I had a quick question. Is it possible to save a file without actually uploading it through a form? For example, lets say i'm looking at attachments from emails, and i want to save them using ...
12
votes
3answers
3k views

How to set file programmatically using Paperclip

I have rake task to seed the application with random data using the faker gem. However, we also have images (like logos) that we want uploaded in this rake task. We already have Paperclip set up, but ...
11
votes
5answers
7k views

Rails Plugin: Paperclip Question

How can I prevent the image tag that calls the associated image from displaying if no image is associated with the record? <%= image_tag @agent.avatar.url %> ...gives me the text "Missing" if ...
10
votes
3answers
3k views

Attachment_fu or Paperclip for Rails3

I have just upgraded to rails3 and when I installed my usual attachment_fu plugin failed. So I started googling it and although I did manage to find a rails3 version there seemed to be a lot more ...
10
votes
2answers
7k views

Why do I get an "undefined method for `has_attached_file` when installing PaperClip?

I just installed the plugin for Paperclip and I am getting the following error message but I am not sure why: NoMethodError (undefined method `has_attached_file' for #<Class:0x10338acd0>): ...
10
votes
2answers
7k views

Smarter paperclip validations

I'm using paperclip in a rails app and have the following three validations in my model validates_attachment_presence :photo validates_attachment_size :photo, ...
9
votes
3answers
3k views

Rails Paperclip how to delete attachment?

I am using Paperclip (w/ Amazon s3) on Rails 3. I want to delete an existing attachment without replacing it using an update action. I've only found one example of this here and could not get that to ...
9
votes
2answers
3k views

unit test in rails - model with paperclip

I'm trying to write a test for a model with a picture, using paperclip. I'm using the test framework default, no shoulda or rspec. In this context, how should I test it? Should I really upload a file? ...
9
votes
2answers
2k views

How can I resize a Paperclip image after it has been added to the database?

I've added 2000 pictures to my images table and I'm using the Paperclip plugin to create thumbs. I'm wondering if there's a way to go through the database and add another :styles element. For ...
9
votes
2answers
5k views

Simple cropping with Paperclip

I would like to crop images on upload using Paperclip to get square thumbs from the center of the original picture. I find out a method in documentation that seems to do exactly what I want: ...
8
votes
2answers
2k views

Heroku + Paperclip + Amazon S3 - Pricing?

Since Heroku is a read-only filesystem I can't use paperclip to store a small quantity of files on the server. Database image storage is an option, but not particularly ideal since that may crank my ...
8
votes
4answers
2k views

paperclip - Saving the images Dimensions? width,height

Hello? Any paper_clip wizards out there know if you can when using paperclip to save an image, also save the image dimensions (width&height) in 2 extra fields? How do you get such data during the ...
8
votes
2answers
2k views

Zip up all Paperclip attachments stored on S3

Paperclip is a great upload plugin for Rails. Storing uploads on the local filesystem or Amazon S3 seems to work well. I'd just assume store files on the localhost, but the use of S3 is required for ...
8
votes
1answer
1k views

Uploading to Ruby on Rails from iPhone using ASIHTTPRequest

I've really hit a wall and am need of some help! Thankyou for reading this far! I'm in the middle of writing an app that talks to my ROR web-server for database requests and works great thanks to ...
7
votes
1answer
1k 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 ...
7
votes
1answer
2k views

Rails missing image

I am currently using paperclip to upload images to my rails app. This is probably a very simple fix but how or where do I save the missing images to? This is the error that is produced from not having ...
7
votes
2answers
3k views

Trying to get paperclip to refresh or reprocess

I have over time, changed the size for thumbs of the class Deal. Through these changes, users were uploading to the site, so there are few people who have different sized thumbs. I wanted to ...
7
votes
1answer
1k views

How to copy a file using Paperclip

Does anyone know of a way to copy files with Paperclip using S3 for storage? Before I try to write my own, I just wanted to make sure there wasn't already a way to do this. Thanks
6
votes
3answers
750 views

Ruby on Rails, Paperclip, Heroku, GitHub and AWS - securing keys

I'm using RoR hosted by Heroku and I'd like to store files on s3 using paperclip. My source code is hosted on github and is world readable. What is the best practice to keep the keys a secret from the ...
6
votes
4answers
492 views

Preventing Paperclip from deleting/overwriting attachments on update

I'm having a hard time figuring out how to prevent Paperclip from deleting the old version of an attachment (image). I have a model, Site, which has an attachment, logo. I would like to keep the old ...
6
votes
3answers
1k views

Rails 3, Paper_Clip + S3 - Howto Store for an Instance and Protect Access

I have a Rail3 app with paper_clip, with the intent to store data on S3. In the app, Users belong to an instance. I would like the data stored across all the models per instance. And would like to ...
6
votes
1answer
890 views

Resize existing images to new style in paperclip & RMagick

I've been using paperclip to upload and auto-resize photos in my Rails app, and I love it. Only problem is about every other month my crazy manager decides he wants a new size to display the photos ...
6
votes
6answers
4k views

NoMethodError: undefined method `has_attached_file'

Paperclip produces this error, after checking out the plugin's rails3 branch. My Gemfile has following line: gem 'paperclip', :git => 'http://github.com/thoughtbot/paperclip.git', :branch => ...
6
votes
8answers
6k views

Rails3 and Paperclip

I have migrated my application from rails 2.3 to rails3 and i have a problem with paperclip. I saw there was a branch for rails3 on paperclip git. So I added "gem 'paperclip', :git => ...
6
votes
4answers
7k views

Unit testing paperclip uploads with Rspec (Rails)

Total Rspec noob here. Writing my first tests tonight. I've got a model called Image. Using paperclip I attach a file called photo. Standard stuff. I've run the paperclip generator and ...
6
votes
1answer
1k views

Rails: Paperclip & previews?

You know on some sites when you're asked to upload, say, an avatar, you click on the button, select your file, then hit OK, but before you Submit the page (as in, no record is created/updated), a ...
6
votes
4answers
2k views

Using Rails with Paperclip and SWFUpload

I have a basic rails application test with a user model that has a photo field handled with paperclip. I created the views to be able to create/edit an user and the photo uploading is working nicely. ...
6
votes
3answers
3k views

Set path for original images using paperclip in Rails?

The situation I have a simple model with an attached image using paperclip, which has a couple of processed styles for it (thumbnail, full, feature). At this point it works as it should, and makes a ...
5
votes
2answers
111 views

paperclip working in development but not working in production?

I'm pretty new to rails and seem to be having an issue with the paperclip gem. I installed the gem and it works well in development (localhost:3000) but when I'm running it on the heroku server, for ...
5
votes
1answer
649 views

How can I get url for paperclip image in to_json

I have a model that uses paperclip like this: has_attached_file :avatar, :styles => { :large => "100x100>" , :medium => "50x50>", :small => "20x20>" }, :default_url => ...
5
votes
1answer
632 views

HTTP-POST an image to Ruby on Rails app

I have an image in the form of a byte array in java. I'm trying to upload that image to my Ruby on Rails app, which makes use of Paperclip gem. My Rails model looks like this: class App < ...
5
votes
4answers
2k views

How do I find an image on a page with Cucumber / Capybara in Rails 3

I am using Cucumber / Capybara with Rails 3 and am trying to validate the existence of an image after upload. I'm not sure how to check the url of the image to validate it. I have the following ...
5
votes
2answers
2k views

Paperclip with S3 on Rails 3 / uninitialized constant AWS::S3::Connection

I'm trying to upload a file to s3 using paperclip and get this error when making a new object and referencing the variable: the aws-s3 gem is installed the s3.yml file has the correct credentials ...
5
votes
1answer
667 views

Rspec tests hanging with Paperclip

I have a Picture model in my app that uses Paperclip to attach an image to it. The model: class Picture < ActiveRecord::Base has_attached_file :image, :default_url => ...
5
votes
4answers
1k views

Rails Paperclip Plugin - Style Options for Resizing

So, I want to resize images to a FIXED width, but proportional height. I have been trying a wide range of operators: 380x242# 380x242> 380!x242 380x242< none of them have the desired effect. ...
5
votes
1answer
4k views

Rails - Paperclip, getting width and height of image in model

Trying to get the width and height of the uploaded image while still in the model on the initial save. Any way to do this? Here's the snippet of code I've been testing with from my model. Of course ...
5
votes
1answer
788 views

where from does paperclip get the name of original file?

i started using nginx upload module (which creates upload files like /tmp/000121545) but i need paperclip to use original filename while saving files (like /public/avatars/LuckyLuke.jpg) previously ...
5
votes
2answers
5k views

Resize an image with Paperclip [Rails]

The Paperclip plugin for Rails has a resize option that keeps the image in proportion. According to Ryan Bates' Paperclip Railscast, to make sure that option is on, you have to add a greater-than sign ...
5
votes
1answer
1k views

Paperclip and xhr.sendAsBinary

I use paperclip to add a file to my model. I want to use the new feature of firefox 3.6, xhr.sendAsBinary, to send a file with an ajax request. Here is how I build my request : var xhr = new ...
5
votes
2answers
2k views

How to disable postprocessing for pdf files in Paperclip?

Paperclip by default try to process every image file to generate thumbnail. But it also try to do it with pdf files, which can be really time consuming task. I tried looking on google and found one ...
5
votes
4answers
6k views

Rails Paperclip conflict between aws-s3 gem and right_aws gem. How to solve?

for a new App I want to use paperclip to store Files to S3. I already have installed the aws-s3 gem for another app. That seems to cause some problems, because Paperclip should use right_aws but is ...
5
votes
4answers
4k views

mod_rails and Paperclip problem Paperclip::NotIdentifiedByImageMagickError

I am havingn troble deploying my app to a server runing ubuntu with mod_rails. Runing webrick on the server seems fine and I can save files, no problem. But runing the app thru nginx, I get this error ...
5
votes
1answer
2k views

Paper Clip failing to save attachment

I'm using Ruby 1.9 and Rails 2.3.4 with Paperclip gem to save attachments. and I followed tutorial by adding the proper migration, adding (has_attached_file :video) to the model, making the form ...
4
votes
2answers
244 views

Rails 3.1, paperclip, s3 - uninitialized constant AWS::S3::Base

I am getting the following error when trying to upload an image using paperclip and s3 storage. The app worked fine uploading locally, but when I've made the required changes to use s3 I get the ...
4
votes
1answer
85 views

Reading in CSV files smaller than 10K from S3 with Ruby 1.9.2 p290

The following code snippet works fine for CSV file sizes larger than 10 K. lines = CSV.read(open(resource.csv(:original))) This is reading the the CSV file stored in Amazon S3 using Paperclip gem. ...
4
votes
1answer
270 views

Paperclip: How to resize an image only if it is big enough?

I use Paperclip to resize pictures like this: class Asset < ActiveRecord::Base has_attached_file :asset, :styles => { :thumb => "80x80#", :medium ...

1 2 3 4 5 23