24 lines
		
	
	
		
			368 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			368 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # typed: false
 | |
| # frozen_string_literal: true
 | |
| 
 | |
| module TimeRemaining
 | |
|   refine Time do
 | |
|     def remaining
 | |
|       [0, self - Time.now].max
 | |
|     end
 | |
| 
 | |
|     def remaining!
 | |
|       r = remaining
 | |
| 
 | |
|       raise Timeout::Error if r <= 0
 | |
| 
 | |
|       r
 | |
|     end
 | |
|   end
 | |
| end
 | |
| 
 | |
| class Time
 | |
|   # Backwards compatibility for formulae that used this ActiveSupport extension
 | |
|   alias rfc3339 xmlschema
 | |
| end
 | 
