1
0
Fork 0
burden/lib/rake_control/storage/mongo_mapper/run.rb

14 lines
235 B
Ruby
Raw Normal View History

2013-06-06 14:15:38 +00:00
module RakeControl
module Storage
module MongoMapper
class Run
include ::MongoMapper::Document
key :name, String
key :success, Boolean
key :execution_time, Float
end
end
end
end