DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Detect If Your Running On Windows
It's an unfortunate necessity that you need to write different code for windows sometimes or at the very least load different libraries since there is no fork(), etc. This is how you can tell.
# Returns true if we are running on a MS windows platform, false otherwise.
def Kernel.is_windows?
processor, platform, *rest = RUBY_PLATFORM.split("-")
platform == 'mswin32'
end






Comments
Snippets Manager replied on Sun, 2010/11/28 - 1:26pm
Snippets Manager replied on Fri, 2010/10/01 - 6:57am
Snippets Manager replied on Mon, 2012/05/07 - 2:24pm
Snippets Manager replied on Mon, 2006/01/23 - 6:05am