It is very easy to associate an image with a model using ruby console, given you are associating image to the model using paperclip. Here is what you are gonna do url=”http://golygon.com/image_url.png” file = open url //Ruby will fetch the image using HTTP on your server @user.photo = file // User model uses paperclip to […]