module OS
os detection
Public Class Methods
jruby?()
click to toggle source
# File lib/rake-extensions.rb, line 23 def OS.jruby? RUBY_ENGINE == 'jruby' end
linux?()
click to toggle source
# File lib/rake-extensions.rb, line 19 def OS.linux? OS.unix? and not OS.mac? end
mac?()
click to toggle source
# File lib/rake-extensions.rb, line 11 def OS.mac? (/darwin/ =~ RUBY_PLATFORM) != nil end
unix?()
click to toggle source
# File lib/rake-extensions.rb, line 15 def OS.unix? !OS.windows? end
windows?()
click to toggle source
# File lib/rake-extensions.rb, line 7 def OS.windows? (/cygwin|mswin|mingw|bccwin|wince|emx/ =~ RUBY_PLATFORM) != nil end