class Rufus::Scheduler

def precision= (f)


Setting the precision ( 0.0 < p <= 1.0 )
def precision= (f)
  raise 'precision must be 0.0 < p <= 1.0' \
    if f <= 0.0 or f > 1.0
  @precision = f
end