rails carrierwave edit/update form
In your listings_controller.rb, try something like:
def edit
@listing = Listing.find(params[:id])
@listing.image.cache!
end
Haven't tested this out myself, but I think it might work, given that image_cache field is used to circumvent this problem normally.