Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using Paperclip in a rails 3.2 application with an asset polymorphic model. All my files are stored with Amazon S3.

I'm using the following path in my paperclip_defaults.rb initializer

path: ":class/:attachment/:hash/:filename",

is there a way to add assetable_id here, because all my files are stored in the same folder and it's not very convenient.

I've tried to override the path in my Asset model

path: ":class/:attachment/:assetable_type/:hash/:filename",

But this just creates a folder name ":assetable_type" in my S3 bucket.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.