require 'rubygems' require 'dm-core' require 'dm-types' require 'dm-validations' module ConsadoleAggregator module NikkanSports class Entry include DataMapper::Resource property :id, Serial property :uri, URI, :unique => true property :title, String property :text, Text property :post_date, Time property :image, String end end end