Codebase list pipal / upstream/3.1 os.rb
upstream/3.1

Tree @upstream/3.1 (Download .tar.gz)

os.rb @upstream/3.1raw · history · blame

module OS
	def OS.windows?
		(/cygwin|mswin|mingw|bccwin|wince|emx/ =~ RUBY_PLATFORM) != nil
	end

	def OS.mac?
	 (/darwin/ =~ RUBY_PLATFORM) != nil
	end

	def OS.unix?
		!OS.windows?
	end

	def OS.linux?
		OS.unix? and not OS.mac?
	end
end