1 2 3 4 5 6 7 8 9
module OS def self.mac? /darwin/i === RUBY_PLATFORM end def self.linux? /linux/i === RUBY_PLATFORM end end