有没有办法询问 Ruby 它运行在什么操作系统上?
我将剪贴板 gem 与 Selenium 结合使用,我需要脚本在所有系统上运行。
由于 OSX 与 Windows 上的“复制”键盘快捷键不同,我希望能够知道我的脚本正在哪个操作系统上运行。
有没有办法询问 Ruby 它运行在什么操作系统上?
我将剪贴板 gem 与 Selenium 结合使用,我需要脚本在所有系统上运行。
由于 OSX 与 Windows 上的“复制”键盘快捷键不同,我希望能够知道我的脚本正在哪个操作系统上运行。
可以使用RUBY_PLATFORM
常量查询:
>> RUBY_PLATFORM
=> "i686-linux"
为此,我们使用了类似于https://github.com/kotp/rlcw/blob/master/lib/platform.rb的代码:
module Platform
def check_operating_system
# The Mac check has to be proceed before the Win check!
# Perhaps checking for /mswin/ will reduce this requirement.
case RUBY_PLATFORM
when /ix/i, /ux/i, /gnu/i, /sysv/i, /solaris/i, /sunos/i, /bsd/i
require 'gtk2'
Gtk.init
@clip = Gtk::Clipboard.get(Gdk::Selection::CLIPBOARD)
:unix
when /darwin/i
:mac_os_x
when /mswin/i, /ming/i
require 'vr/clipboard'
@clip = Clipboard.new(2048)
:windows
else
:other
end
end
end