# File lib/compass/app_integration/rails/installer.rb, line 84
        def prompt_sass_dir
          if rails3?
            nil
          else
            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
        end