2010-10-17 19:42:40 +00:00
|
|
|
def mac?
|
|
|
|
Config::CONFIG['target_os'] =~ /darwin/i
|
|
|
|
end
|
|
|
|
|
|
|
|
def linux?
|
|
|
|
Config::CONFIG['target_os'] =~ /linux/i
|
2011-04-30 10:38:57 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def windows?
|
|
|
|
Config::CONFIG['target_os'] =~ /mswin|mingw/i
|
2010-10-17 19:42:40 +00:00
|
|
|
end
|