# File lib/compass/app_integration/rails/installer.rb, line 70
        def prompt_sass_dir
          recommended_location = separate('app/stylesheets')
          default_location = separate('public/stylesheets/sass')
          print %Q{Compass recommends that you keep your stylesheets in #{recommended_location}
  instead of the Sass default location of #{default_location}.
  Is this OK? (Y/n) }
          answer = $stdin.gets.downcase[0]
          answer == ?n ? default_location : recommended_location
        end