How to reuse ActiveRecord::Validations

I want to reuser ActiveRecord::Validations with out ActiveRecord::Base
How to do this ?

class TempModel
include ActiveRecord::Validations
validate_presence_of :title
end