The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
12 views

Is it possible to make an attachment optional in paperclip?

Here's how I am using paperclip in my model: has_attached_file :photo, styles: { display: { geometry: "146x153#", format: :jpg, }, message: { geometry: "48x48#", ...
0
votes
0answers
14 views

Disappearing image uploading from validates in imagemagick ruby on rails?

I am building a RoR web app that lets people upload an image. I am using Paperclip and Imagemagick. I put validates presence because I don't want to allow blank uploads. This is what I have: ...
0
votes
2answers
62 views

custom paperclip validation error message

I have this validation for content type: validates_attachment_content_type :photo, :content_type => /^image\/(jpg|jpeg|pjpeg|png|x-png|gif)$/, :message => 'file type is not allowed (only ...
0
votes
2answers
65 views

can't upload image (paperclip) and jquery mobile

Can't save avatar(image) get this message : 1 error prohibited this notice from being saved: Avatarを入力してください。 development.log Started PUT "/notices/1" for 127.0.0.1 at 2013-04-11 ...
0
votes
1answer
153 views

Checking file size/type before upload using Paperclip and Rails

I have a Rails app which allows users to upload videos (on a local, rather than a cloud, server). I'm using Paperclip 3.1.4 and Paperclip-ffmpeg 0.9.0. Everything is working fine and dandy, but the ...
0
votes
1answer
41 views

Rails: prevent submitting form if field is blank

I am creating product page, where user can upload more than one photo of product. To create and edit product, i am rendering a form file. For uploading photos, i have used nested_fields for photos in ...
0
votes
0answers
36 views

paperclip keeps default file after deleting attachment

Folks, I am using paperclip to manage attachments in my model, these are JSON files. I have the following piece of code in my model: before_validation :update_medical_hisotry def ...
0
votes
1answer
92 views

Paperclip override validates_attachment in subclass

I am trying to override validates_attachment in Subclass but I notice it only works well with Superclass validation; I wonder why my validates_attachment in subclass doesn't work. Has anybody faced ...
0
votes
1answer
208 views

Paperclip file size validation error message

validates_attachment_size :image, :less_than => 5.megabytes gives an error message of Image file size must be less than 5242880 Bytes This isn't very user friendly.. Is there a way to make ...
2
votes
1answer
157 views

Rails paperclip, Edit form file_field not assigned

I used paperclip to attach an avatar onto my user, in my Model: has_attached_file :avatar, :styles => {square_tiny: '50x50#', square_small: '100x100#', square: '200x200#'} I have a form ...
3
votes
1answer
107 views

Paperclip gives error when image is not uploaded

Paperclip works fine when I upload an image and then display it with: <%= image_tag @post.photo.url(:medium) %> The problem is, if an image wasn't uploaded, I get this error: NoMethodError ...
1
vote
1answer
553 views

Paperclip image dimensions custom validator

This is my Image model, in which I've implemented a method for validating the attachment's dimensions: class Image < ActiveRecord::Base attr_accessible :file belongs_to :imageable, ...
0
votes
0answers
59 views

Stop Rails Paperclip from trying to generate thumbnail on text files?

I've noticed that paperclip tries to generate thumbnail before going through the content_type validation. So I end up with a lot of ghostscript related errors and an additional message as followed. ...
0
votes
0answers
194 views

Rails, Paperclip; Validate Attachment

I want validate the file content of a paperclip attachment (https://github.com/thoughtbot/paperclip). My model: class PackageArchive < ActiveRecord::Base attr_accessible :package ...
3
votes
2answers
201 views

Ruby/Rails inheritance, overriding validators defined in super-class in sub-class

I have the following rails/paperclip validator: class ImageRatioValidator < ActiveModel::EachValidator def validate_each(record, attribute, value) attr_name = "#{attribute}_width".to_sym ...
0
votes
1answer
93 views

Changing Error Message in Rails Model

I have a Rails (3.1) app with a model validation that, when triggered, puts the model and field name before the message, e.g.: Profile image profile image content type Only jpeg, gif and png files ...
1
vote
1answer
154 views

Running only paperclip validations in Rails

I've model Profile class Profile < Abstract has_attached_file :avatar, ... validates_attachment_size :avatar, :less_than => 2.megabytes ...
0
votes
2answers
876 views

Why does my Paperclip validates_attachment_presence test fail?

In my Rails 3.2.2 project, I have the following: class Photo < ActiveRecord::Base belongs_to :album default_scope order: :title extend FriendlyId friendly_id :title, :use => :slugged ...
2
votes
0answers
453 views

Paperclip attachment size validation fails, but size is valid?

My model class Article < ActiveRecord::Base LOGO_TYPES = ['image/jpeg', 'image/png', 'image/gif'] VALID_LOGO_MESSAGE = 'Please attach a valid picture file containing your organization logo. ...
0
votes
1answer
111 views

If-Statement with Paperclip | Ruby on Rails

I have to create 300px widht thumbnails if the file is a picture ('image/jpeg', 'image/png', 'image/gif') and no thumbnails if the file has an other extension. I'm using Paperclip for file-upload ...
5
votes
0answers
433 views

Paperclip/Rspec tests: Is there a faster way to test paperclip validates_attachment_content_type?

One thing I've noticed is that in most of the projects I do, the one spec that always takes a long time (30 seconds +) is this shoulda/paperclip helper: it { should ...
2
votes
3answers
903 views

paperclip validations causing Error in Rails 3

I've recently installed the paperclip gem to my Rails 3 app. I am trying to allow users to upload an avatar to their profile. I followed the install instructions and here is what my models/views look ...
1
vote
3answers
358 views

Not recognized by the 'identify' command error while using validates_each

Below is my validations for image content type which works fine. validates_attachment_size :icon, :less_than => MAX_SIZE.megabytes, :message => "Max size is 1 mb" validates_attachment_content_type ...
4
votes
2answers
2k views

Paperclip- validate pdfs with content_type='application/octet-stream'

I was using paperclip for file upload. with validations as below: validates_attachment_content_type :upload, :content_type=>['application/pdf'], :if => ...
5
votes
1answer
2k views

Validate extension in Paperclip - Ruby on Rails

I've found that Paperclip can validate file content type, i.e. image/jpeg, but I want to specifically validate the extension. This is because I'm working with an obscure extension that won't get a ...
6
votes
3answers
915 views

Paperclip photo upload fails in IE8

I'm using paperclip to upload image in my app. The validation I've is : validates_attachment_content_type :image, :content_type => ['image/jpg','image/jpeg', 'image/png', 'image/tiff', ...
0
votes
1answer
182 views

Is that possible to get the file name in Paperclip validation message?

I use Paperclip 2.3.11 in my Rails 3 application, and have the following validation: validates_attachment_size :asset, :less_than => 2.megabytes, :message => "bigger ...