Created
February 26, 2010 14:37
-
-
Save ybakos/315755 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 Photo < ActiveRecord::Base | |
| belongs_to :photographable, :polymorphic => true | |
| has_attached_file :source, | |
| :styles => { :normal => ['112x112^', :png] }, | |
| :default_style => :normal, | |
| :path => ":rails_root/public/assets/:class/:attachment/:id/:style/:basename.:extension", | |
| :url => "/assets/:class/:attachment/:id/:style/:basename.:extension" | |
| acts_as_list :scope => :photographable | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment