Skip to content

Instantly share code, notes, and snippets.

@ohammersmith
Created December 10, 2008 15:45
Show Gist options
  • Save ohammersmith/34352 to your computer and use it in GitHub Desktop.
Save ohammersmith/34352 to your computer and use it in GitHub Desktop.
Sniff Windows platform in Ruby
if RUBY_PLATFORM =~ /mswin|mingw/
begin
require 'win32/open3'
rescue LoadError
warn "You must 'gem install win32-open3' to use the github command on Windows"
exit 1
end
else
require 'open3'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment