Codebase list pipal / 7044a0b8-7cd1-4bce-84ff-e38747eb8389/main os.rb
7044a0b8-7cd1-4bce-84ff-e38747eb8389/main

Tree @7044a0b8-7cd1-4bce-84ff-e38747eb8389/main (Download .tar.gz)

os.rb @7044a0b8-7cd1-4bce-84ff-e38747eb8389/mainraw · 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