Skip to content

Instantly share code, notes, and snippets.

@takuyan
Created July 15, 2011 01:18
Show Gist options
  • Save takuyan/1083844 to your computer and use it in GitHub Desktop.
Save takuyan/1083844 to your computer and use it in GitHub Desktop.
paperclip sample
# app/models/figure.rb
class Figure < ActiveRecord::Base
has_attached_file :image,
:styles => { :medium => "300x300>", :thumb => "100x100>" },
:storage => :s3,
:s3_host_name => "s3-us-west-1.amazonaws.com",
:s3_credentials => "#{Rails.root}/config/s3.yml",
:path => ":attachment/:id/:style/:filename"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment