class Chronic::RepeaterDayPortion

def offset(span, amount, pointer)

def offset(span, amount, pointer)
  @now = span.begin
  portion_span = self.next(pointer)
  direction = pointer == :future ? 1 : -1
  portion_span + (direction * (amount - 1) * RepeaterDay::DAY_SECONDS)
end