Module: SassC::Util
Overview
# A module containing various useful functions.
Instance Method Summary collapse
-
#windows? ⇒ Boolean
Whether or not this is running on Windows.
Instance Method Details
#windows? ⇒ Boolean
Whether or not this is running on Windows.
11 12 13 14 |
# File 'lib/sassc/util.rb', line 11 def windows? return @windows if defined?(@windows) @windows = RbConfig::CONFIG['host_os'].match?(/mswin|windows|mingw/i) end |