def finalize(options = {})
if options[:create]
puts "\nCongratulations! Your rails project has been configured to use Compass.\nJust one more thing left to do: Register the compass gem.\n\nIn Rails 2.2 & 2.3, add the following to your evironment.rb:\n\nconfig.gem \"compass\", :version => \">= \#{Compass::VERSION}\"\n\nIn Rails 3, add the following to your Gemfile:\n\ngem \"compass\", \">= \#{Compass::VERSION}\"\n\nThen, make sure you restart your server.\n\nSass will automatically compile your stylesheets during the next\npage request and keep them up to date when they change.\n"
end
unless options[:prepare]
if manifest.has_stylesheet?
puts "\nNext add these lines to the head of your layouts:\n\n"
puts stylesheet_links
puts "\n(You are using haml, aren't you?)"
end
end
end