module DBus::Platform

Platform detection

Public Instance Methods

freebsd?() click to toggle source
   # File lib/dbus/platform.rb
18 def freebsd?
19   RbConfig::CONFIG["target_os"] =~ /freebsd/
20 end
macos?() click to toggle source
   # File lib/dbus/platform.rb
22 def macos?
23   RbConfig::CONFIG["target_os"] =~ /darwin/
24 end