mdarby (owner)

Revisions

gist: 89295 Download_button fork
public
Public Clone URL: git://gist.github.com/89295.git
Embed All Files: show embed
Ruby #
1
2
3
4
5
6
7
8
9
10
11
class Document < ActiveRecord::Base
 
  has_attachment :storage => :file_system,
                  :path_prefix => 'uploaded_files',
                  :max_size => 25.megabytes
                  
  validates_as_attachment
  
  has_ipaper_and_uses 'AttachmentFu'
  
end