10 lines
175 B
Ruby
10 lines
175 B
Ruby
|
module RakeControl
|
||
|
class Run
|
||
|
include Mongoid::Document
|
||
|
|
||
|
field :name, type: String
|
||
|
field :success, type: Boolean
|
||
|
field :execution_time, type: Float
|
||
|
end
|
||
|
end
|