master/spec/support/platform_helper.rb

7 lines
113 B
Ruby
Raw Normal View History

def mac?
Config::CONFIG['target_os'] =~ /darwin/i
end
def linux?
Config::CONFIG['target_os'] =~ /linux/i
end