Key: package.more_contributors

Property definitions

nitc $ MPackageMetadata :: more_contributors=
	# Key: `package.more_contributors`
	var more_contributors: Array[String] is lazy do
		var res = new Array[String]
		var string = metadata("package.more_contributors")
		if string == null then return res
		for c in string.split(",") do
			c = c.trim
			if c.is_empty then continue
			res.add c
		end
		return res
	end
src/catalog/catalog.nit:105,2--116,4