I am using the Carrierwave plugin to upload images. It works fine, but if I try to save an image from the controller using
Article.create(:image => 'sample.png')
It doesent save the image as long as carrierwave is mounted, if I un-mount Rails will save the image like normal.. How can I solve this?