process_args

in lib/cc/cli/validate_config.rb [25:38]


      def process_args
        @registry_path = EngineRegistry::DEFAULT_MANIFEST_PATH
        @registry_prefix = ""

        
        
        while (arg = @args.shift)
          case arg
          when "--registry" then @registry_path = @args.shift
          when "--registry-prefix" then @registry_prefix = @args.shift
          end
        end
      end