Skip to content

Instantly share code, notes, and snippets.

@gustavoreis
Created December 17, 2018 15:10
Show Gist options
  • Save gustavoreis/50ff2eb292e37d81f73b7d1315049d37 to your computer and use it in GitHub Desktop.
Save gustavoreis/50ff2eb292e37d81f73b7d1315049d37 to your computer and use it in GitHub Desktop.
require 'csv'
CSV.open('images.csv') do |csv|
ProductAsset.includes(:product).find_each do |asset|
csv << [
asset.product.reference,
"https://a0.vnda.com.br/#{asset.file_uid}"
]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment