module RocketFuel::SystemDetails

Constants

SUPPORTED_OSX_MINORS

Public Class Methods

os() click to toggle source
# File lib/rocket_fuel/system_details.rb, line 12
def os
  @os ||= RocketFuel::OperatingSystem.new
end
os_version() click to toggle source
# File lib/rocket_fuel/system_details.rb, line 8
def os_version
  os.version
end
platform_family?(platform) click to toggle source
# File lib/rocket_fuel/system_details.rb, line 16
def platform_family?(platform)
  os.platform_family?(platform)
end