BasicObject
Determine if we use sudo, defaults to true unless we are on win32, cygwin, or mingw32 or they ask us not to
# File lib/compass/app_integration/rails/templates/compass-install-rails.rb, line 34 def sudo_is_an_option? return false if RUBY_PLATFORM =~ /(win|w)32$/ # true if win32, cygwin or mingw32 return false if ENV['NO_SUDO'] =~ /true/ return true end
Generated with the Darkfish Rdoc Generator 2.