module TimeConstantMethods

def before( time )

## specified +time+. E.g., 2.hours.before( header.expiration )
## Returns the Time number of seconds before the
def before( time )
	return time - self
end