class Chronic::Span

def +(seconds)

resulting Span
Add a number of seconds to this span, returning the
def +(seconds)
  Span.new(self.begin + seconds, self.end + seconds)
end