# File lib/compass/installers/base.rb, line 12
      def initialize(template_path, target_path, options = {})
        @template_path = template_path
        @target_path = target_path
        @working_path = Dir.getwd
        @options = options
        @manifest = Manifest.new(manifest_file) if template_path
        self.logger = options[:logger]
      end