You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
guiocavalcanti edited this page Oct 24, 2011
·
2 revisions
Ao adicionar um novo estilo aos thumbnails é necessário reprocessar os mesmos para que o novo estilo seja aplicado. Tal tarefa
é feita pelo método reprocess do paperclip.
Para reprocessar os thumbnails de User e Environment, por exemplo, o código abaixo pode ser utilizado.
[User,Environment].eachdo |klass|
klass.where("avatar_file_name IS NOT ?",nil).eachdo |entity|
entity.avatar.reprocess!endend