3
我有一個模型Idea
其中has_attached_file :file1
和has_attached_file :file2
。出於開發目的,我有一個「bootstrap」任務,負責創建一些初始對象(只是爲了不必創建用戶,每次刪除sqlite文件時都會上傳一些文件)。我應該如何從Rake任務中做到這一點?如何從Rake任務創建一些Paperclip對象?
我有一個模型Idea
其中has_attached_file :file1
和has_attached_file :file2
。出於開發目的,我有一個「bootstrap」任務,負責創建一些初始對象(只是爲了不必創建用戶,每次刪除sqlite文件時都會上傳一些文件)。我應該如何從Rake任務中做到這一點?如何從Rake任務創建一些Paperclip對象?
嘗試:
Idea.new(
:name => 'bla',
:file1 => File.open('/some/path/to.file'),
:file2 => File.open('/some/path/to.file')
)
謝謝!有用! – Geo 2012-01-03 21:10:35