search for: replace_image

Displaying 1 result from an estimated 1 matches for "replace_image".

2013 Sep 18
2
Accessing model attributes in ActiveSupport::Concern module
...blic", "images", image_dir, pic_link)) return true else return false end rescue return true #an error occured but when the image does not exist we still return true end end return true end def replace_image(new_image) File.open(Rails.root.join("public", "images", image_dir, new_image.original_filename), "wb") do |f| if f.write new_image.read delete_image pic_link = new_image.original_filename return true #everything went fine...