# File lib/compass/installers/rails.rb, line 79
      def prompt_css_dir
        recommended_location = separate("public/stylesheets/compiled")
        default_location = separate("public/stylesheets")
        puts
        print %Q{Compass recommends that you keep your compiled css in #{recommended_location}/
instead the Sass default of #{default_location}/.
However, if you're exclusively using Sass, then #{default_location}/ is recommended.
Emit compiled stylesheets to #{recommended_location}/? (Y/n) }
        answer = gets.downcase[0]
        answer == ?n ? default_location : recommended_location
      end