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

14 lines
251 B
Ruby
Raw Normal View History

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