Method: Timeloop#to_s

Defined in:
lib/timeloop.rb

#to_sObject

Returns string representation of self,



27
28
29
30
31
# File 'lib/timeloop.rb', line 27

def to_s
  ["#<Timeloop period=#{period}",
   max < Float::INFINITY ? ", max=#{max}" : "",
   ">"].join
end