module Localhost::System

def self.current

def self.current
	case RUBY_PLATFORM
	when /darwin/
		require 'localhost/system/darwin'
		Darwin
	when /linux/
		require 'localhost/system/linux'
		Linux
	else
		raise NotImplementedError, "Unsupported platform: #{RUBY_PLATFORM}"
	end
end