module Storefront module SystemHelper def windows? # Can't match for just 'win' cause it will match darwin as well. (/win32|mswin|mingw/).match(RUBY_PLATFORM) ? true : false end # Works on Debian and Ubuntu, don't have anything else to test on. def linux? (/linux/).match(RUBY_PLATFORM) ? true : false end # Works on my MacBook Pro, don't have anything else to test on, def mac? (/darwin/).match(RUBY_PLATFORM) ? true : false end end end