# File lib/compass/configuration.rb, line 41
    def parse_string(contents, filename)
      bind = binding
      eval(contents, bind, filename)
      ATTRIBUTES.each do |prop|
        value = eval(prop.to_s, bind) rescue nil
        self.send("#{prop}=", value) if value
      end
      if @added_import_paths
        self.additional_import_paths ||= []
        self.additional_import_paths += @added_import_paths
      end
      issue_deprecation_warnings
    end