Skip to content

Instantly share code, notes, and snippets.

@jamesmoriarty
Created May 21, 2012 09:18
Show Gist options
  • Select an option

  • Save jamesmoriarty/2761444 to your computer and use it in GitHub Desktop.

Select an option

Save jamesmoriarty/2761444 to your computer and use it in GitHub Desktop.
gem 'paperclip', '2.7.0'
gem 'aws-sdk', '~> 1.3.4'
has_attached_file :data,
:storage => :s3,
:s3_credentials => {
:access_key_id => ENV['API_AWS_S3_ACCESS_KEY'],
:secret_access_key => ENV['API_AWS_S3_ACCESS_SECRET']
},
:bucket => 'my_app_' + Rails.env
# ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment