module TimeConstantMethods

def after( time )

## E.g., 10.minutes.after( header.expiration )
## Returns the Time number of seconds after the given +time+.
def after( time )
	return time + self
end