kcdragon/mongration

View on GitHub
lib/os_check.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'rbconfig'

module OsCheck
  def self.mac_osx?
    RbConfig::CONFIG['host_os'] =~ /darwin|mac os/
  end
end