How to set a file upload programmatically using Paperclip
问题 I have a rake task to seed an 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 don't have a way to upload them programmatically in a rake task. Any ideas? 回答1: What do you mean by programmatically? You can set up a method that will take a file path along the lines of my_model_instance = MyModel.new file = File.open(file_path) my_model_instance.attachment = file file.close