up vote 12 down vote favorite
11
share [g+] share [fb]

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?

link|improve this question

feedback

3 Answers

up vote 30 down vote accepted

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
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|improve this answer
feedback

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|improve this answer
This is useful, but I guess we're not exactly doing this, thanks anyway! – Jaryl Sep 9 '09 at 5:45
feedback

I didn't actually have to write a method for this. Much simpler.

In Model ->

Class Model_Name < ActiveRecord::Base
  has_attached_file :my_attachment,
  :params_for_attachment

In seed.db ->

my_instance = Model_name.new
my_instance.my_attachment = File.open('path/to/file/relative/to/app')
my_instance.save!

Perhaps the previous answers meant to use the name of the attachment as defined in the model (rather than writing a method Model_name.attachment). Hope this is clear.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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