31 lines
		
	
	
	
		
			324 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			324 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| module Mastodon
 | |
|   module Version
 | |
|     module_function
 | |
| 
 | |
|     def major
 | |
|       1
 | |
|     end
 | |
| 
 | |
|     def minor
 | |
|       4
 | |
|     end
 | |
| 
 | |
|     def patch
 | |
|       7
 | |
|     end
 | |
| 
 | |
|     def pre
 | |
|       nil
 | |
|     end
 | |
| 
 | |
|     def to_a
 | |
|       [major, minor, patch, pre].compact
 | |
|     end
 | |
| 
 | |
|     def to_s
 | |
|       to_a.join('.')
 | |
|     end
 | |
|   end
 | |
| end
 |