From eafe876da66f0a4ab2c18c9fb36907f3bfe49814 Mon Sep 17 00:00:00 2001 From: Arto Bendiken Date: Sat, 23 Nov 2024 09:07:02 +0400 Subject: [PATCH] Add a GitHub example to the README. --- README.md | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 49c99bd..c718fb9 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,9 @@ at [Unlicense.org](https://unlicense.org) going forward. > collection of popular, high-quality software projects. The inclusion of a > project in this registry is no guarantee of getting listed as a showcase. -## Example Project Description +## Example Project Descriptions + +### SQLite See [projects/sqlite.json](https://github.com/unlicense/unencumbered-software/blob/master/projects/sqlite.json) @@ -42,6 +44,28 @@ for an example of how to describe a project: } ``` +### RDF.rb + +See +[projects/rdf.rb.json](https://github.com/unlicense/unencumbered-software/blob/master/projects/rdf.rb.json) +for an example of how to describe a typical project hosted on GitHub: + +``` json +{ + "name": "RDF.rb", + "homepage": "https://rubygems.org/gems/rdf", + "shortdesc": { + "en": "A Ruby library for working with Resource Description Framework (RDF) data." + }, + "download-page": "https://rubygems.org/gems/rdf", + "repository": { + "browse": "https://github.com/ruby-rdf/rdf", + "location": "https://github.com/ruby-rdf/rdf.git" + }, + "license": "https://github.com/ruby-rdf/rdf/blob/develop/UNLICENSE" +} +``` + ## Frequently Asked Questions ### Q: How can I suggest a project without submitting a pull request?