Skip to content

Instantly share code, notes, and snippets.

View fleveque's full-sized avatar

Francesc Leveque fleveque

  • Stuart
  • Cubelles, Garraf, Barcelona
View GitHub Profile
@fleveque
fleveque / migrate_s3.rake
Last active November 2, 2015 14:52
rake task to migrate paperclip attachments to Amazon S3 using aws-sdk v1
namespace :attachments do
task migrate_to_s3: :environment do
require 'aws-sdk'
# Define Paperclip models (change with your own)
models = [
[Model1, :data],
[Model2, :logo]
]