Skip to content

Instantly share code, notes, and snippets.

@kylefox
Created December 2, 2009 16:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kylefox/247336 to your computer and use it in GitHub Desktop.
Save kylefox/247336 to your computer and use it in GitHub Desktop.
class Photo < ActiveRecord::Base
belongs_to :user
belongs_to :blog :through => :user
has_attached_file :image,
:storage => :s3,
:styles => {
:large => "900x600",
:medium => "500x500",
:small => "240x240",
:square => "100x100#"}
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment