# File lib/compass/app_integration/stand_alone/installer.rb, line 42
        def finalize(options = {})
          if options[:create] && !manifest.welcome_message_options[:replace]
            puts "\n*********************************************************************\nCongratulations! Your compass project has been created.\n\nYou may now add and edit sass stylesheets in the \#{Compass.configuration.sass_dir} subdirectory of your project.\n\nSass files beginning with an underscore are called partials and won't be\ncompiled to CSS, but they can be imported into other sass stylesheets.\n\nYou can configure your project by editing the config.rb configuration file.\n\nYou must compile your sass stylesheets into CSS when they change.\nThis can be done in one of the following ways:\n1. To compile on demand:\ncompass compile [path/to/project]\n2. To monitor your project for changes and automatically recompile:\ncompass watch [path/to/project]\n\nMore Resources:\n* Wiki: http://wiki.github.com/chriseppstein/compass\n* Sass: http://sass-lang.com\n* Community: http://groups.google.com/group/compass-users/\n\n"
          end
          puts manifest.welcome_message if manifest.welcome_message
          if manifest.has_stylesheet? && !manifest.welcome_message_options[:replace]
            puts "\nTo import your new stylesheets add the following lines of HTML (or equivalent) to your webpage:"
            puts stylesheet_links
          end
        end