Skip to content
Snippets Groups Projects
Commit d3e19b15 authored by Jack Nagel's avatar Jack Nagel
Browse files

Simplify MacOS.version.to_sym

parent f1808cd6
No related branches found
No related tags found
No related merge requests found
......@@ -29,15 +29,7 @@ module OS
end
def to_sym
case @version
when '10.9' then :mavericks
when '10.8' then :mountain_lion
when '10.7' then :lion
when '10.6' then :snow_leopard
when '10.5' then :leopard
when '10.4' then :tiger
else :dunno
end
SYMBOLS.invert.fetch(@version) { :dunno }
end
def pretty_name
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment