class Object
Constants
- FALLBACK_SYMBOLS
These sumbols are only used in case of windows since windows doesn't support the
MAIN_SYMBOLS
- MAIN_SYMBOLS
These symbols are only available on unix
Public Instance Methods
main_supported()
click to toggle source
# File lib/symbols.rb, line 21 def main_supported if (/cygwin|mswin|mingw|bccwin|wince|emx/ =~ RUBY_PLATFORM) == nil return true else return false end end