compound_metric_with_error.rb 251 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 class Kalibro::CompoundMetricWithError < Kalibro::Model attr_accessor :metric, :error def metric=(value) @metric = Kalibro::CompoundMetric.to_object value end def error=(value) @error = Kalibro::Error.to_object value end end