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

14 lines
251 B
Ruby

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