Module: OpenRemote::OS

Included in:
Browser
Defined in:
lib/or-browser.rb

Overview

Detect operating system

Instance Method Summary collapse

Instance Method Details

#os_nameObject



4
5
6
7
8
9
10
11
12
# File 'lib/or-browser.rb', line 4

def os_name
  if (/darwin/ =~ RUBY_PLATFORM) != nil
    "mac"
  elsif (/cygwin|mswin|mingw|bccwin|wince|emx/ =~ RUBY_PLATFORM) != nil
    "dos"
  else
    "nix"
  end
end