# File lib/compass/commands/create_project.rb, line 82
        def parse!(arguments)
          parser = option_parser(arguments)
          parse_options!(parser, arguments)
          parse_arguments!(parser, arguments)
          if parser.options[:framework] && parser.options[:bare]
            raise Compass::Error, "A bare project cannot be created when a framework is specified."
          end
          set_default_arguments(parser)
          parser.options
        end