1 require 'dm-validations'
6 include DataMapper::Resource
8 property :id, Integer, :serial => true
9 property :filename, String
10 property :created_on, DateTime
11 property :content_type, String
12 property :thumbnail, String
13 property :size, Integer
14 property :type, Class # single-table inheritance
17 filename.split('.').first
21 filename.split('.').last