Created
September 30, 2011 00:54
-
-
Save dodops/1252368 to your computer and use it in GitHub Desktop.
Paperclip: Help a friend with the problematic gem...
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Pessoa < ActiveRecord::Base | |
has_attached_file :imagem, :styles => { :tamanho_pequeno => "150x150", | |
:tamanho_medio => "300x300", | |
:tamanho_grande => "600x600" } | |
validates_attachment_presence :imagem | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment