burden/lib/rake_control/storage/mongoid/rake_control_run.rb

10 lines
175 B
Ruby
Raw Normal View History

2013-06-05 00:19:02 +04:00
module RakeControl
class Run
include Mongoid::Document
field :name, type: String
field :success, type: Boolean
field :execution_time, type: Float
end
end