class Thicket::TimeMeasure::Measure

Attributes

abbreviation[R]
length[R]
threshold[R]

Public Class Methods

new(length_in_seconds, abbreviation, threshold_in_seconds) click to toggle source
# File lib/thicket/time_measure.rb, line 8
def initialize(length_in_seconds, abbreviation, threshold_in_seconds)
  @length = length_in_seconds
  @abbreviation = abbreviation
  @threshold = threshold_in_seconds
end