# File lib/compass/installers/rails.rb, line 69
      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 = gets.downcase[0]
        answer == ?n ? default_location : recommended_location
      end