Land #7152, update global constants to allow for windows 10

bug/bundler_fix
Pearce Barry 2016-07-27 12:58:44 -05:00
commit f2a608b400
No known key found for this signature in database
GPG Key ID: 0916F4DEA5C5DE0A
1 changed files with 3 additions and 1 deletions

View File

@ -88,6 +88,7 @@ module OperatingSystems
SEVEN = "7"
EIGHT = "8"
EIGHTONE = "8.1"
TEN = "10.0"
end
UNKNOWN = "Unknown"
@ -108,6 +109,7 @@ module OperatingSystems
WINDOWS_2012 = /^(?:Microsoft )?Windows 2012/
WINDOWS_8 = /^(?:Microsoft )?Windows 8/
WINDOWS_81 = /^(?:Microsoft )?Windows 8\.1/
WINDOWS_10 = /^(?:Microsoft )?Windows 10/
LINUX = /^Linux/i
MAC_OSX = /^(?:Apple )?Mac OS X/