Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save matthewlehner/1050278 to your computer and use it in GitHub Desktop.
Save matthewlehner/1050278 to your computer and use it in GitHub Desktop.
require "config/environment"
count = Rim.count
Rim.all.each_with_index do |rim, i|
if rim.rim_photo.file?
puts "rim #{i} of #{count} +"
rim.photo = File.open((Rails.root.to_s + '/public' + rim.rim_photo.url).split("?").first)
rim.save
else
puts "rim #{i} of #{count} -"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment