Skip to content

Instantly share code, notes, and snippets.

@cpjolicoeur
Created November 14, 2008 15:51
Show Gist options
  • Save cpjolicoeur/24954 to your computer and use it in GitHub Desktop.
Save cpjolicoeur/24954 to your computer and use it in GitHub Desktop.
## FORM
- form_for @user, :html => { :multipart => true } do |f|
...
%p
= f.file_field :avatar
## MODEL
has_attached_file :avatar, :styles => { :small => "150x150>", :large => "200x200>" }#,
validates_attachment_size :avatar, :less_than => 2.megabyte
validates_attachment_content_type :avatar, :content_type => ["images/jpeg", "image/png"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment