Skip to content

Instantly share code, notes, and snippets.

@kshsieh
Created May 9, 2013 15:41
Show Gist options
  • Save kshsieh/5548277 to your computer and use it in GitHub Desktop.
Save kshsieh/5548277 to your computer and use it in GitHub Desktop.
thoughts?
connection = Fog::Storage.new({
:provider => 'AWS',
:aws_access_key_id => CONFIG[:access_key_id],
:aws_secret_access_key => CONFIG[:secret_access_key]
})
bucket = connection.directories.get('artsicledev')
url = https://artsicledev.s3.amazonaws.com/
Image.all.each do |img|
s3 = img.s3_url
img_key = s3.sub(url, "")
if bucket.files.get(img_key) == nil
data_errors.create(message: "s3_url doesn't match key")
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment