vote up 2 vote down star

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 don't have a way to upload them programmatically in a rake task. Any ideas?

flag

80% accept rate

2 Answers

vote up 2 vote down check

What do you mean by programmatically? You can setup a method that will take a file path along the lines of

my_model_instance = MyModel.new
my_model_instance.attachment = File.open(file_path)
my_model_instance.save!

We've done things similar to this when bootstrapping a project.

Is this what you are asking, or something more involved? Maybe a little more info might help.

link|flag
vote up 1 vote down

I do something like this in a rake task.

photo_path = './test/fixtures/files/*.jpg'
Dir.glob(photo_path).entries.each do |e|
  model = Model.find(...)        
  model.attachment = File.open(e)
  modle.save
end

I hope this helps!

link|flag
This is useful, but I guess we're not exactly doing this, thanks anyway! – Jaryl Sep 9 at 5:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.