CarrierWave レール アップローダーがあります。データベースに偽のユーザーをシードしたいので、同じシードファイルで画像を追加しようとしています。画像は共通のストレージにあるので、データベースでアバター文字列を取得できれば機能します。画像がついてないのにユーザーを救ったとき。
# db/seeds.rb
user1 = User.create :email => "test1@test.com", :password => "testing", :name => "Bob Dylan", :avatar => "v1357014344/bdylan.jpg"
user1.save
# IRB
User.first
=> #<User id: 1, email: "test1@test.com", name: "Bob Dylan", avatar: nil>
> a = User.first
> a.avatar = "v1357014344/bdylan.jpg"
> a.save
(10.7ms) commit transaction
=> true
> a
=> #<User id: 1, email: "test1@test.com", name: "Bob Dylan", avatar: nil>