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/.match?(RUBY_PLATFORM)
    "mac"
  elsif /cygwin|mswin|mingw|bccwin|wince|emx/.match?(RUBY_PLATFORM)
    "dos"
  else
    "nix"
  end
end