| 
									
										
										
										
											2015-08-03 13:09:07 +01:00
										 |  |  | require "version" | 
					
						
							| 
									
										
										
										
											2013-02-06 22:49:43 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-18 12:56:51 -05:00
										 |  |  | module OS | 
					
						
							|  |  |  |   module Mac | 
					
						
							|  |  |  |     class Version < ::Version | 
					
						
							|  |  |  |       SYMBOLS = { | 
					
						
							| 
									
										
										
										
											2016-06-13 19:20:00 +01:00
										 |  |  |         :sierra        => "10.12", | 
					
						
							| 
									
										
										
										
											2015-08-03 13:09:07 +01:00
										 |  |  |         :el_capitan    => "10.11", | 
					
						
							|  |  |  |         :yosemite      => "10.10", | 
					
						
							|  |  |  |         :mavericks     => "10.9", | 
					
						
							|  |  |  |         :mountain_lion => "10.8", | 
					
						
							|  |  |  |         :lion          => "10.7", | 
					
						
							|  |  |  |         :snow_leopard  => "10.6", | 
					
						
							|  |  |  |         :leopard       => "10.5", | 
					
						
							|  |  |  |         :tiger         => "10.4" | 
					
						
							| 
									
										
										
										
											2013-10-18 12:56:51 -05:00
										 |  |  |       } | 
					
						
							| 
									
										
										
										
											2013-06-15 19:39:27 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-18 12:56:51 -05:00
										 |  |  |       def self.from_symbol(sym) | 
					
						
							| 
									
										
										
										
											2014-07-16 21:11:48 -05:00
										 |  |  |         str = SYMBOLS.fetch(sym) do | 
					
						
							|  |  |  |           raise ArgumentError, "unknown version #{sym.inspect}" | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |         new(str) | 
					
						
							| 
									
										
										
										
											2013-10-18 12:56:51 -05:00
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2013-06-15 19:39:27 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-02 20:29:20 -05:00
										 |  |  |       def initialize(*args) | 
					
						
							|  |  |  |         super | 
					
						
							|  |  |  |         @comparison_cache = {} | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-18 12:56:51 -05:00
										 |  |  |       def <=>(other) | 
					
						
							| 
									
										
										
										
											2014-04-02 20:29:20 -05:00
										 |  |  |         @comparison_cache.fetch(other) do | 
					
						
							| 
									
										
										
										
											2014-06-03 11:32:26 -05:00
										 |  |  |           v = SYMBOLS.fetch(other) { other.to_s } | 
					
						
							| 
									
										
										
										
											2014-04-02 20:29:20 -05:00
										 |  |  |           @comparison_cache[other] = super(Version.new(v)) | 
					
						
							|  |  |  |         end | 
					
						
							| 
									
										
										
										
											2013-10-18 12:56:51 -05:00
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2013-06-14 11:56:33 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-18 12:56:51 -05:00
										 |  |  |       def to_sym | 
					
						
							| 
									
										
										
										
											2014-06-03 11:32:26 -05:00
										 |  |  |         SYMBOLS.invert.fetch(@version) { :dunno } | 
					
						
							| 
									
										
										
										
											2013-06-14 14:47:16 -07:00
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2013-06-15 19:40:42 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-18 12:56:51 -05:00
										 |  |  |       def pretty_name | 
					
						
							| 
									
										
										
										
											2015-08-03 13:09:07 +01:00
										 |  |  |         to_sym.to_s.split("_").map(&:capitalize).join(" ") | 
					
						
							| 
									
										
										
										
											2013-10-18 12:56:51 -05:00
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2013-06-15 19:40:42 -05:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2013-02-06 22:49:43 -06:00
										 |  |  |   end | 
					
						
							|  |  |  | end |