aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/os/mac/version.rb
blob: 802ec3035292ced8b3a6de7ea80f74b5c7b9a112 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
require "version"

module OS
  module Mac
    class Version < ::Version
      SYMBOLS = {
        sierra: "10.12",
        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",
      }.freeze

      def self.from_symbol(sym)
        str = SYMBOLS.fetch(sym) do
          raise ArgumentError, "unknown version #{sym.inspect}"
        end
        new(str)
      end

      def initialize(*args)
        super
        @comparison_cache = {}
      end

      def <=>(other)
        @comparison_cache.fetch(other) do
          v = SYMBOLS.fetch(other) { other.to_s }
          @comparison_cache[other] = super(Version.new(v))
        end
      end

      def to_sym
        SYMBOLS.invert.fetch(@version) { :dunno }
      end

      def pretty_name
        to_sym.to_s.split("_").map(&:capitalize).join(" ")
      end
    end
  end
end