# File lib/blueprint/compressor.rb, line 22
    def initialize
      # set up defaults
      @script_name = File.basename($0) 
      @loaded_from_settings = false
      self.namespace = ""
      self.destination_path = Blueprint::BLUEPRINT_ROOT_PATH
      self.custom_layout = CustomLayout.new
      self.project_name = nil
      self.custom_css = {}
      self.semantic_classes = {}
      self.plugins = []
    
      self.options.parse!(ARGV)
      initialize_project_from_yaml(self.project_name)
    end