processing.rb 235 Bytes
class Processing < KalibroEntities::Entities::Processing
  include KalibroRecord

  def ready?
    @state == "READY"
  end

  def metric_results
    KalibroEntities::Entities::MetricResult.metric_results_of(@results_root_id)
  end
end