Codebase list pipal / 6256e365-4ff0-480b-b9df-75efd26c3f52/main os.rb
6256e365-4ff0-480b-b9df-75efd26c3f52/main

Tree @6256e365-4ff0-480b-b9df-75efd26c3f52/main (Download .tar.gz)

os.rb @6256e365-4ff0-480b-b9df-75efd26c3f52/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