public
Description: Rails plugin for uploading images as resources, with support for resizing, text stamping, and other special effects.
Homepage: http://wiki.github.com/Squeegy/fleximage
Clone URL: git://github.com/Squeegy/fleximage.git
fleximage / test / rails_root / app / models / abstract.rb
100644 8 lines (7 sloc) 0.177 kb
1
2
3
4
5
6
7
8
class Abstract < ActiveRecord::Base
  set_table_name :photo_dbs
  
  acts_as_fleximage do
    require_image false
    default_image :size => '320x240', :color => 'red'
  end
end