Codebase list pipal / 437d1b69-6830-44a5-ba58-51cf63d5ef83/main os.rb
437d1b69-6830-44a5-ba58-51cf63d5ef83/main

Tree @437d1b69-6830-44a5-ba58-51cf63d5ef83/main (Download .tar.gz)

os.rb @437d1b69-6830-44a5-ba58-51cf63d5ef83/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