Skip to content
Snippets Groups Projects
Commit ca10e500 authored by Adam Vandenberg's avatar Adam Vandenberg
Browse files

Fix pretty names

parent 8739eeab
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,15 @@ module MacOS
end
def pretty_name
@version.split('_').map(&:capitalize).join(' ')
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 @version
end
end
end
end
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