added attachment_fu and made the set of changes
[selectricity-live] / app / models / picture.rb
index 9ec3d5e8d9592ec279c6a1803af942924cd91f66..04b368ed67c4264254debdcadb8a73a29d42decf 100644 (file)
 class Picture < ActiveRecord::Base
   belongs_to :candidate
  
-  def set_from_field(field)
-    unless field.content_type.match(/^image/)
-      return false
-    end
-    self.filename = base_part_of(field.original_filename)
-    self.filetype =  field.content_type.chomp
-    self.data = field.read
-    self
-  end
+  has_attachment  :storage => :file_system, 
+                  :max_size => 1.megabytes,
+                  :thumbnails => { :thumb => '70x53>' },
+                  :processor => :Rmagick
 
-  def base_part_of(filename)
-    name = File.basename(filename)
-    name.gsub(/[^\w._-]/, '')
-  end
+  validates_as_attachment
 
 end
 

Benjamin Mako Hill || Want to submit a patch?