# File lib/mario/platform.rb, line 119 def current # Search for the current target os current_target_klass = check_group(targets) unless current_target_klass raise OperatingSystemNotRecognized.new("\nThe current target os \#{target_os}, is not recognized by Mario, please use/change Mario::Platform.forced to emulate a supported operating system.\"\n\n") end @@current ||= current_target_klass.new @@current end